> IE just throws a wobbly:
> 
>     Line: 639
>     Error: Wrong number of arguments or invalid property assignment
> 
> which appears to reside in the 'attr' function, the line is:
> 
>       } else if ( elem.getAttribute ) {

Just a hunch, but IE's DOM support isn't native Javascript. If they got
their typelib wrong it may be trying to call getAttribute rather than check
elem for a getAttribute property. Can you replace that last line with this
and see if it works?

        } else if ( typeof(elem.getAttribute) != "undefined" ) {


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to