On 11/4/06, Dave Methvin <[EMAIL PROTECTED]> wrote:
> Okay, this version doesn't error out at least:
>
> http://methvin.com/junk/jquery-xml-bug.html?patched
>
> The fix is to change this line of attr() :
>
> Old:
>   } else if ( elem.getAttribute != undefined && elem.tagName ) { // IE
> elem.getAttribute passes even for style
>
> New:
>
>   } else if ( typeof(elem.getAttribute) != "undefined" && elem.tagName ) {
> \
>
> I think IE  is trying to _call_ elem.getAttribute for some reason, must be a
> bug in the COM typelib for the XML control.

Nice. This works for me.

--
Brandon Aaron

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to