I have the following code
$.ajax({ type: 'POST', url: 'index.jsp', data: 'id=111', dataType: 'jsonp', success: function(data) { alert(data.result); }, error: function( err1, err2, err3 ) { alert('Error:' + err3 ) } });
I am returning the response as a callback parameter created using the json argument. like this
jQuery16105097715278461496_1314674056493({"result" : "success"})
This works great in FF. In IE 9, it goes into error function and shows
"Error: jQuery16105097715278461496_1314674056493 was not called" .
when i see f12. I see a warning saying.
SEC7112: Script from http:



source share