How to remove render blocking JavaScript with defer and async
With HTML5 there are 2 new boolean attributes for <script> tag which indicates to the browser how the script should be evaluated. The 2 attributes are defer and async. Using these attributes can help improve the page load time by downloading the script in parallel when the page is being parsed and then executing it […]
How to remove render blocking JavaScript with defer and async Read More »