I am trying to debug all of the jquery requests on my page but for some reason the requests with datatype jsonp are not causing my global event to fire. I have no control over the ajax requests that are using the jsonp datatype so I need to come up with a solution that wont require changing the actual ajax request code. I can however make changes to the $.ajax function/jquery lib etc. I have a stripped down example that shows how it the event is not being triggered.
$('body').bind("ajaxSend",function() {
alert('global ajaxSend');
});
$.ajax({
type: 'GET',
url: 'http://www.example.com',
dataType: "jsonp",
success : function(result) {alert('success');},
error : function(XMLHttpRequest,textStatus,errorThrown) {alert('error');}
});
In that example the ajaxSend event is not triggered. Does anyone know of a workaround or patch that will make it fire?
