I was having roughly the same error. Running the page through the w3c validator showed me my invalid script tags. IE wouldn't load them, all other browsers would.
You might try using either HTML 4.01 or XHTML 1.0 transitional DOCTYPE to force IE into standards compliance mode. Also, I believe this is more correct: <script type="text/javascript" ..... instead of: <script language="javascript" .... Good luck. On Sep 21, 9:17 am, meddling <[EMAIL PROTECTED]> wrote: > I'm very interested in this as well. I'm running into the same > problem with my mockup project. Runs fine in Mozilla (like most > things :)), butIEfails silently. I really wish I had some sort of > Firebug forIE, so I could at least see if the HTTP requests were > being sent (and if they were giving proper responses). I'd assume the > server response is valid -- since the browser shouldn't make much of a > difference there -- but if it's a Javascript issue, why doesn'tIE > report an error? > > My head has been hurting on this one for the past week! > > Someone enlighten us, please! :) > > Jonathon > > On Sep 20, 3:53 pm, m2web <[EMAIL PROTECTED]> wrote: > > > When loading the following intoIE6. I get no error. Nothing. Any > > help is appreciated. > > > <html> > > <head> > > <title>Parse XML with JQuery</title> > > <script language="javascript" src="jquery-1.2.1.js"></script> > > <script language="javascript"> > > > $(function() { > > $.ajax({ > > type: "POST", > > url: "books.xml", > > dataType: "xml", > > success: function(xmlData) > > { > > xmlDataSet = xmlData; > > buildHTMLFromXML(); > > } > > }); > > }); > > > function buildHTMLFromXML() > > { > > resultSetLength = $("book",xmlDataSet).length; > > > strToAppend = "<strong>There are a total of " + resultSetLength > > + " books</strong>.<br />"; > > strToAppend += "------------------------<br />"; > > $("title",xmlDataSet).each(function(i) { > > strToAppend += "<strong>" + $(this).text() + "</strong><br />"; > > > strToAppend += "by " + $("author:eq(" + parseInt(i) + > > ")",xmlDataSet).text() + "<br />"; > > strToAppend += "Publisher: " + $("publisher:eq(" + parseInt(i) > > + ")",xmlDataSet).text() + "<br />"; > > strToAppend += "ISBN-10: " + $("isbn:eq(" + parseInt(i) + > > ")",xmlDataSet).text(); > > strToAppend += "<br />"; > > strToAppend += "<br/>***********"; > > strToAppend += "<br />"; > > }); > > /* > > Populate our DIV with the HTML String > > */ > > $("#widget").html(strToAppend); > > } > > </script> > > </head> > > <body> > > <div id="widget" style="float:left"></div> > > </body> > > </html>