Can anyone explain me why those spaces (marked with ?) are there? They are delaying the page loading. I thought it could be the page/script parsing time, but ~350ms looks too much for a simple page; Okay, there're lots of script, but it still looks to much.

What can it be?

Chrome page speed screenshot

link|improve this question

1  
Use the Timeline view to see what else is happening. – Matt Ball Jul 26 '11 at 17:47
1  
If you remove the script, this effect is still remain ? – Aristos Jul 26 '11 at 18:01
1  
Can you verify this using other tools like firebug? – Amir Raminfar Jul 26 '11 at 18:11
I don't think those gaps are delaying the page, it's the document waiting and receiving time. If you look in firebug you won't see those gaps. – zero7 Jul 26 '11 at 20:01
The gaps are shown in firebug too. The thing is that there's an important ajax request at the end (the one marked in yellow), which is being delayed. I guess it has to do with script parsing, but couldn't figure how to optimize it yet. – Diego Jancic Jul 27 '11 at 13:39
show 2 more comments
feedback

1 Answer

My guess is that it is a JavaScript loading issue. You should be deffering loading of JavaScript using a defer attribute. This will allow the page to load before it will execute the JavaScript code.

This is because browsers are single threaded and when they encounter a script tag, they halt any other processes until they download and parse the script. By including scripts at the end, you allow the browser to download and render all page elements, style sheets and images without any unnecessary delay. Also, if the browser renders the page before executing any script, you know that all page elements are already available to retrieve.

See http://www.hunlock.com/blogs/Deferred_Javascript and http://blog.fedecarg.com/2011/07/12/javascript-asynchronous-script-loading-and-lazy-loading/

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.