Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the PerformanceTiming interface to measure page load time.

Several of my pages have a long "Browser Time" (i.e. loadEventEnd - responseEnd), and I think this could be because of the Ajax requests from the pages.

My question is: where do Ajax requests fit in the PerformanceTiming process model? Is it in the "Processing" block?

Process Model

If so, what's the best way to measure the Ajax execution time?

share|improve this question
I'd assume that they start somewhere in (or after) the Processing, and the loadEvent waits for them. – Bergi Jan 30 at 13:47

1 Answer

The Ajax Requests are after the end of the model.

See http://stackoverflow.com/a/16289733/1168884 for an example where an Ajax request runs and does not affect the properties on the performance object (which only reflects the loading of the page)

I guess the underlying issue is that, where as the page-loading events are quite defined (for example the DOM is now complete and available) and this is reflected in the model. The Ajax events are not (for example, there isn't really an event when you can say "all Ajax on the page has now completed running").

I haven't tried it, but there a project Boomerang which promises to allow the measuring of dynamically loaded content - http://lognormal.github.io/boomerang/doc/use-cases.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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