Find JavaScript files that block page rendering and slow down display
This only checks render-blocking JS. For a comprehensive analysis, use the full page check.
You can also audit your entire site. Duplicate titles and descriptions, orphan pages, broken links between sections, and other site-wide issues can only be found with a full site audit.
If you don't have an SEO specialist, we can help fix the errors found.
Render-blocking resources are JavaScript and CSS files that block page rendering. When the browser encounters a <script> tag without async or defer attributes, it pauses HTML parsing, downloads and executes the script, and only then continues building the DOM. This delays the first paint and worsens FCP and LCP metrics.
defer attribute to DOM-dependent scripts — this is the safest approachasync for independent scripts — analytics, ad widgets, counters