Mobile app version of vmapp.org
Login or Join
Goswami781

: Why does loading of an external "async defer" javascript code happen before page load? Recaptcha recommends loading of its script like this: <script src="https://www.google.com/recaptcha/api.js"

@Goswami781

Posted in: #Html #Javascript #LoadTime #Performance

Recaptcha recommends loading of its script like this:

<script src="https://www.google.com/recaptcha/api.js" async defer></script>


I added this to the head section of the html document and checked with Chrome when it is loaded. Chrome says it is loaded before page load (the network tab of chrome devtools indicates the end of the page load with a vertical red line and the above script is loaded before that.

Why is that? Shouldn't adding async defer as recommended by google defer loading of the script after page load?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

The page is only fully loaded when all linked resources (including <script async defer) have loaded. This is when the onload event fires.

However, the DOMContentLoaded event is likely to fire before this - which will probably be before the async defer scripts have loaded. (I say "probably" - if the browser is able to determine that it can load the script in another thread at the same time without slowing things down then I guess it probably will; but with no guarantee.)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme