Is there a way to get an xmlHttpRequest load time?

Otherwise I'll have to set a function that count it, so?



PS: I'm getting

Oops! Your question couldn't be submitted because:
It does not meet our quality standards.

So I added these last lines

link|improve this question

55% accept rate
feedback

1 Answer

up vote 1 down vote accepted

To the best of my knowledge there isn't an execution time included as part of the XMLHTTPRequest object. You can, however, use JS to calculate this value:

var d = new Date();
var start = d.getTime();

// Execute request

alert( "Request took: " + ( d.getTime() - start ) );

For more info on the data that is stored in the XMLHTTPRequest object, see this page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.