I have a simple jQuery AJAX funciton:
$.ajax({
type: "GET",
url: "json/" + address,
dataType: "json",
timeout: 1000,
data: "username=" + username + "&paging_limit=" + paging_limit,
success: function(json){alert("somthing")},
error: function(){alert("somthing else")}
});
I get the following error in Firefox (3.6) when the request times out,
setting a property that has only a getter
[Break on this error] null}};try{var h=x.abort;x.abort=funct...return!a.status&&location.protocol===
The only fix is that of not setting a custom 'timeout' setting.
Has anyone come across this before, should I be concerned, is there a solution?
Thanks in advance.