Scripts without async or defer: what it is, why it matters, and how to fix it
One or more script elements with src attributes lack async or defer attributes, causing them to block HTML parsing during download and execution.
Where this fits: performance in SEO
Why scripts without async or defer hurts your rankings
Synchronous scripts halt HTML parsing while the browser downloads and executes them. This delays the discovery and loading of subsequent resources, increases Time to Interactive, and can significantly slow First Contentful Paint. Scripts that block parsing are one of the most impactful performance bottlenecks.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Add async for scripts that are independent and can execute in any order (analytics, ads). Add defer for scripts that depend on DOM or execution order. Use type='module' for ES module scripts which are deferred by default.
<script src="/analytics.js" async></script>
<script src="/app.js" defer></script>Frequently asked questions
What does "Scripts without async or defer" mean?
One or more script elements with src attributes lack async or defer attributes, causing them to block HTML parsing during download and execution.
Why does scripts without async or defer matter for SEO?
Synchronous scripts halt HTML parsing while the browser downloads and executes them. This delays the discovery and loading of subsequent resources, increases Time to Interactive, and can significantly slow First Contentful Paint. Scripts that block parsing are one of the most impactful performance bottlenecks.
How do I fix scripts without async or defer?
Add async for scripts that are independent and can execute in any order (analytics, ads). Add defer for scripts that depend on DOM or execution order. Use type='module' for ES module scripts which are deferred by default.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the performance family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects scripts without async or defer on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by scripts without async or defer, and hands you a ready-made fix task.
Check my site free