Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix the “pending” status in Chrome Developer Window?

When I try to include social media scripts into my page, I get the "pending" status in Chrome on some computers (not all of them): chrome developer windowhttps://s17.postimg.cc/xvpjllmwv/image.png

In other words, the scripts are not loaded. The scripts are included via the default way as recommended by the developer's guide.

What settings of Chrome may cause such behavior?

like image 949
Jean Louis Avatar asked Jul 02 '13 10:07

Jean Louis


2 Answers

This is due to the Ad-block or some plugin you are using with the chrome. Disabling the ad-block/plugin which blocks the requests will fix your issue. It blocks all the requests and so it is pending.

Try to fix this way and share the status.

like image 183
Jayram Avatar answered Sep 28 '22 02:09

Jayram


Are you using HTTPS on the site?

If you are, chrome blocks http requests within https websites and shows a gray shield near the bookmark star on the url bar.

If this is the case just include your external stuff without specifying protocols

Example:

Change

http://domain.com/some.js to //domain.com/some.js

like image 43
imekinox Avatar answered Sep 28 '22 04:09

imekinox