Skip to content Skip to sidebar Skip to footer

Google Audit Question

The following external CSS files were included after an external JavaScript file in the document head. To ensure CSS files are downloaded in parallel, always include exter

Solution 1:

Inspect the page elements. Probably your Chrome extensions are dynamically adding scripts to the page in HEAD.

Solution 2:

I think that when javascript is downloaded the browser must wait to get it all and then run it - this stops it going to the next line directly and getting it. I guess styles all get downloaded and then computed down to inheritance position and importance etc...so they can download in parallel.

This kind of thing is hard to regulate in a CMS with components that load their own style and js.

Solution 3:

For me, Google Analytics library inserted scripts before the rest of mine.

Post a Comment for "Google Audit Question"