Hi,

I found another strange bug in IE. I want to parse some XML that was
loaded via XHR.

The following doesn't work anymore:

$('/dashboard/msg', xml).each(function() {
     o._filterResult = $(this).text();
});

That worked without problems in jQuery pre 1.0.

The next snippet works in Rev 226:

o._filterResult = $('/dashboard/msg', xml).text();

as well as this of course:

$('/dashboard/msg', xml).each(function() {
     o._filterResult = this.firstChild.data;
});


I think, there was another thread here about exactly the same thing. It
seems to me that IE confuses context here somehow, but this is only an
assumption...


-- Klaus


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

Reply via email to