@xzanthos:Using % will only work for properties of objects (ie. this.id, window.location, event.*, target.*, param.*, etc.). You can chain up to as many properties as you would like (window.location.href, etc.), but as soon as you call a method/function on an object, it will not resolve. The only ...