I am using following code to grab data from JSON.
$(document).ready(function()
{
$.getJSON("http://www.example.com/data.php?id=113&out=json", function(data) {
$.each(data.issue.page, function(i,item) {
imagesJSON[i] = item["@attributes"];
});
alert(imagesJSON.length);
});
});
It works in Mozilla, Chrome and other browser but not in IE. (Not in any Version).
$.getJSONhas a tendency to cache results in IE. Use$.ajaxinstead.The related call should be something like this in your case:
Make sure you have
cache: false.UPDATE:
It appears to be a configuration issue at the host with the request url that the OP actually uses. Going to the url directly with IE web browser results in an abort from the host. You can’t do much than to report the issue to the host, like an email to the webmaster of the host.