Hi Tom -

I think this is a "known issue" - and there's currently a bug for it:
http://jquery.com/dev/bugs/bug/174/

Do you think you could try and make a simple test case for this - one
that I can use to help duplicate the problem? That would be most
helpful, thanks.

--John

On 9/5/06, Tom Poole <[EMAIL PROTECTED]> wrote:
> Hello,
> Sorry if this is blindly obvious, but I'm having a few problems with
> this function in IE. It works fine in the Gecko browsers, Safari and
> Opera.
>
> The function is a simple ajax post which returns back the xml
> document. I then use the 'each' function to display the text of each
> 'yelement'. Internet Explorer's ever helpful debugger informs me that
> the 'Object doesn't support this property or method'.
>
> Can someone tell me what is going on here? I'm not sure if I'm being
> stupid or IE is being a pain (again). Any help would be great!
>
>
> function ajax_post()
> {
>         $.post("foo.php", { x: q }, function(xml){
>
>                 $("yelement",xml).each(function(i){
>                         alert($(this).text()); // this doesn't work in IE.
>                 });
>
>         });
>
> }
>
> - Tom
>
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/
>


-- 
John Resig
http://ejohn.org/
[EMAIL PROTECTED]

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

Reply via email to