I'm hoping someone can shed some light on this for me. I have a combination of jQuery and PHP code that takes care of generating and processing some XML. Basically the XML is the status, etc. of AJAX functions that are called, so, for example, the response XML might look like <response><code>1001</code><message>Customer successfully created</message></response>. The jQuery then parses this out using $ (xml).find("response").find("code").text(), etc. This works fine in Firefox, but when trying it in IE 7 it goes directly to the error block of the AJAX call, and I get a parseerror back. I've been digging around for a while trying to find a solution, and I know that some people have reporting problems with the MetaData plugin, but I don't have that plugin installed. I'm using jQuery v 1.2.3, and have even tried updating to the latest but still no luck. Has anyone else run into anything like this, and, hopefully, have a solution?