[jQuery] Running AJAX-plugin demo page with Internet Explorer.
Hello,
First of all a big thank you to John for the incredible work on jQuery!
Now to my problem,
I am trying to running the AJAX-Plugin demo page
(http://jquery.com/demo/ajax/) with IE version 6.0.2900 xp service pack 2.
The problem seems to be using following functions.
$.get("ajax-test.xml",function(xml){
var text = $("title",xml).text();
$("div#xml").html("<h1>"+text+"</h1>");
});
And
$.post("xml.cgi",{
name: "John"
},function(xml){
var text = $("title",xml).text();
$("div#dxml").html("<h2>"+text+"</h2>");
});
Has an both errors on line 478
Which resolves to
:
$.tag = function(a,b){
return a && a.getElementsByTagName ?
a.getElementsByTagName( b ) : [];
};
Is this a known issue, or am i using a unsupported version of IE ?
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/