What about measuring the time of your ajax request?
js
$.get('yourrequest.php',{ start: Date.parse ( new Date() ) }, // <- local time
function(data){
alert('your request took: ' + Date.parse ( new Date() ) - data.start + "ms")
}, 'json');
php
//send back the local time (NOT the server time) together with your information
echo "{'start' : "'.$_GET('start')."'}";
if you just want to have a timing than use a time difference ...
var ajaxRequest = [];
var pos = -1;
function requestSth( url , options )
{
if (options == null)
options = {};
$.extend(options, { id: pos } );
ajaxRequest[++pos] = Date.parse(new Date());
$.get(url, options,
function(data){
alert( 'request ' + data.id + ' returned duration: ' + Date.parse(new Date()) - ajaxRequest[ data.id ] );
ajaxRequest[ data.id ] = -1; // remember that you got a response
}, 'json');
}
setInterval( function () {
for (var i = 0; i < ajaxRequest.length ; i++)
{
if ( ajaxRequest[ i ] > 0 )
alert('still waiting for request: ' + i + ' duration: ' + Date.parse(new Date()) - ajaxRequest[ i ] );
}
}, 1000);
requestSth ( "mypage.php", {name : 'test'});
php
echo "{'id' : "'.$_GET('id')."'}";
this will give you an alert every second for all ajax requests without response