Yahoo
Yahoo

Reputation: 4187

Why does the page take so much time to Load ? Its in waiting status?

I have this website which I designed , It takes a lot of time to load the Page. The Chrome Console shows its in Waiting state , What is that and how can I fix it ?

So much time to Load the page

Upvotes: 0

Views: 1121

Answers (2)

rlcabral
rlcabral

Reputation: 1546

It seems that all that JavaScript is slowing down the page. Right now, after you have removed the token check, the HTML loads fine, but the page still loading for a long time until it finally gets all it needs to finish building the page.

Solution

  • #1 Move the JS to the bottom of the page.
  • #2 If you really need all those asynchronous content, try to load offline as much as you can. Cache it if you can.

Upvotes: 1

Ridcully
Ridcully

Reputation: 23665

I think it might be the call to the facebook graph api which takes some time...

Upvotes: 3

Related Questions