I'm using jquery .load() to load some external(but within same domain) resourses into the page.

As this action is not visible through FireBug Network / Chrome Network console - how can I measure the time of loading?


EDIT:

If running locally ( not localhost ) FireBug will not record this action.

Make sure you are testing this using WAMP / XAMPP (localhost) or on an on-line server.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Using difference in time:

var startDate = new Date();
var startMilliseconds = startDate.getTime();

$('mycontainerselector').load('myurl.html', function() {
    console.log(new Date().getTime() - startMilliseconds);
});

some corrections may be needed :)

link|improve this answer
Very clever! Is the result in ms? – NewUser Sep 15 '11 at 10:21
+1 - good answer – Nicola Peluchetti Sep 15 '11 at 10:23
According to W3C yes (getTime() returns the number of milliseconds since 01.01.1970), but I didn't checked it. – Samich Sep 15 '11 at 10:23
Funny story - I get two different results - 25ms using this count and log method and 30ms reported by FireBug / Netword. – NewUser Sep 15 '11 at 10:31
feedback

.load() makes an AJAX call and it is visible in the firebug console, are you sure you are doing everything in the correct way?

link|improve this answer
Yes, everything works fine. It is not being recorded. I don't know why. – NewUser Sep 15 '11 at 10:22
Maybe because I'm running locally? – NewUser Sep 15 '11 at 10:23
Did you check the ticker "show XMLhttprequests" in the "Console" drop down in firebug?Otherwise it won't show in the console – Nicola Peluchetti Sep 15 '11 at 10:25
yes, that is checked. Once running on WAMP / localhost I get record of this action. If on c:/www/etc... nothing is being recorded (except http requests - jQuery) – NewUser Sep 15 '11 at 10:29
Funny story - I get two different results - 25ms using this count and log method and 30ms reported by FireBug / Netword. – NewUser Sep 15 '11 at 10:31
feedback

you can use console.time() and console.timeEnd()

console.time('loading ajax');
$('#stuff').load('url.html', function() {
   console.timeEnd('loading ajax');
});

it will print "loading ajax: 1247ms" in the console.

link|improve this answer
feedback

another way of measuring this is the following:

var startDate = new Date();
var startMilliseconds = startDate.getTime();

$('#stuff').ajaxStop(function() {
    console.log(new Date().getTime() - startMilliseconds);
});
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.