[jQuery] Re: jQuery Ajax throws parseerror in IE

2007-11-19 Thread 1Marc
I solved this problem by modifying the results of Google's Ajax method. GDownloadUrl(XMLPath, function(data, responseCode) { if(responseCode == 200) { var xml = GXml.parse(data); $('node', xml.documentElement); } else if(responseCode == -1) {

[jQuery] Re: jQuery Ajax throws parseerror in IE

2007-11-16 Thread 1Marc
Here is an update. I tried using Google's API for Ajax and it is returning the data but I am unable to parse it with jQuery. CODE >> GDownloadUrl(object.path + '?' + object.data, function(data, responseCode) { if (responseCode == '200') { $('node', data); } }); OUTPUT >> fi