[Proto-Scripty] Re: IE6 Error: Object doesn't support this property or method

2008-12-02 Thread T.J. Crowder
Hi, 1. 90% of the time, you'll figure out what's wrong in the process of doing it -- instant help! Bingo! Cool. :-) So I worked out that it is because of this: ... Though, changing to what I logically would have thought it should be hasn't worked IE is not tolerant of trailing

[Proto-Scripty] Re: IE6 Error: Object doesn't support this property or method

2008-11-30 Thread T.J. Crowder
Hi Grant, You only need $() to extend elements that have not already been extended. $$() extends the elements it returns[1]. Also, the only reason to call $() is if you're doing something with the return value, which in the given code you're not. [1] http://prototypejs.org/api/utility/dollar

[Proto-Scripty] Re: IE6 Error: Object doesn't support this property or method

2008-11-30 Thread Grant Newton
Thanks TJ An example of where I have it in use is: http://www.sydneycommunitycollege.com.au/courses/sport/dance And even after copy/paste of your code, I still get the error. Thanks Grant On 01/12/2008, at 4:35 PM, T.J. Crowder wrote: Hi Grant, You only need $() to extend