PageSpeed Matters
    Speed Audit
    Let's Talk
    PageSpeed Matters
    Book a Call
    Optimization Techniques · Glossary

    async vs defer

    Matt SuffolettoWritten by Matt Suffoletto
    Published June 26, 2026
    async vs defer
    Share

    TL;DR

    The async and defer attributes on <script> tags change how external JavaScript is fetched and executed: async downloads the script in parallel and executes it as soon as it is available, while defer downloads in parallel and executes after HTML parsing completes, in document order.

    What is async vs defer?

    The async and defer attributes on <script> tags change how external JavaScript is fetched and executed: async downloads the script in parallel and executes it as soon as it is available, while defer downloads in parallel and executes after HTML parsing completes, in document order.

    The stakes have grown with the web: the median page now ships 375 KB of third-party JavaScript, roughly two-thirds of all JS on a typical page, and picking the right attribute on those external <script> tags is what keeps them from blocking your paint.

    Learn more in our deferring scripts the right way guide, or work with us through our done-for-you speed optimization service.

    How async vs defer is Measured

    Script loading behavior is visible in the Network panel of Chrome DevTools.

    Related Terms

    Sources