vote up 2 vote down star

When using jQuery Ajax, I am receiving a parseerror in IE 6, Firefox works just fine.

My code is like this:

$.ajax({
   url: 'test.xml',
   type: 'GET',
   dataType: 'xml',

   error: function(XMLHttpRequest, textStatus, errorThrown) {
       alert('Error: ' + textStatus + ", " + errorThrown);
   },

   success: function(xml){
        ...
   }
});

The output is "Error: parsererror, undefined"

flag

Perhaps the xml isn't well structured. Could you provide it? – kgiannakakis Feb 18 at 12:16
No... i've tried with several XML and all give the same error. It happened even with the simpler XML... like: <test></test> – Alotor Feb 18 at 14:50

2 Answers

vote up 1 vote down

Just a shot in the dark, but what happens whan you rename the XMLHttpRequest argument?

link|flag
vote up 2 vote down check

Ok, this happens when I execute the code in localhost. When I upload the code to the remote server works OK.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.