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
Try setting the cached-option to false.
$.ajax({ async: false, cache: false, type: "get", url:imgsArray[img], success:function(imgFile){ alert("success"); //do something useful }, error:function(XMLHttpRequest,status,error){ //do nothing } });//ajax