I\'m working on a script to load some images async using jQuery.
Here is a code snippet of the function that loads the images -
try{
for(img in i
A simple fix of this problem is to provide the jQuery setting dataType : 'text' or dataType : 'xml' or dataType : 'json' or any other available response type.
I had same problem, but it's working fine after specifying the dataType setting in the .ajax call.
IE is really not an intelligent browser, it doesn't assume the default value string.
Try it... good luck.