How To Eliminate 'render-blocking Javascript' Error For Mobile
Solution 1:
When you put the CSS files in your heading <head>
section, then browser can't load other resources until they did not get (render) css files from your server.
Google already said on their article, if you have small css files then put it internally into head section, so browser don't need to request another HTTP GET request to your server and it will use CSS directly from your <style>.yourcsscode{}</style>
tag.. And if your css file is big then use javascript to render it asynchronously (Example already included in above link).
For javascript use asyn tag like this <script async src="my.js">
and if your javascript is small then use it internally so you can save another HTTP GET request.
The whole thing here is, your browser need to wait to load other resources untill they did not get css and javascript files from server. Rahul provided too many points which does not solve this problem but it is useful if you consider to optimize your pagespeed.
Solution 2:
don't include you js file in between <head>
tag instead include them at end of body
tag
I recommend you to compress and minified all you js in one file and css in one file to reduced http request and add expiry header using .htaccess
and this might help you https://varvy.com/pagespeed/render-blocking-css.html
additionally I suggest you to refer this link https://developer.yahoo.com/performance/rules.html
- Make Fewer HTTP Requests
- Use a Content Delivery Network (CDN)
- Add Expires or Cache-Control Header
- Gzip Components
- Put Stylesheets at Top
- Put Scripts at Bottom
- Avoid CSS Expressions
- Make JavaScript and CSS External
- Reduce DNS Lookups
- Minify JavaScript and CSS
- Avoid Redirects
- Remove Duplicate Scripts
- Configure ETags
- Make Ajax Cacheable
- Flush Buffer Early
- Use GET for Ajax Requests
- Postload Components
- Preload Components
- Reduce the Number of DOM Elements
- Split Components Across Domains
- Minimize Number of iframes
- Avoid 404s
- Reduce Cookie Size
- Use Cookie-Free Domains for Components
etc
Post a Comment for "How To Eliminate 'render-blocking Javascript' Error For Mobile"