Hi, I have large XML (~1 MB) file on server. From my asp.net page, I used below jQuery snippet to get that file to browser, and iterate through it. $.ajax({ type: "GET", url: "http://www.abc.com/temp.xml",
dataType: "xml", async: true, success: function(xml) { } }); Everything works fine. The only issue is - until temp.xml...