Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 29, 2020 12:36 am GMT

Use of defer and async to limit the effects of blocking scripts in JavaScript

When a script is loaded, it loads in blocking or synchronous mode, which means that the browser waits for the script to finish loading before executing any code after it.
So in this case, script2.js cannot start loading before script1.js finishes loading -

<body><script src="script1.js"> </script><script src="script2.js"> </script></body>
Enter fullscreen mode Exit fullscreen mode

As you can imagine, this becomes problematic when -

  1. script2 needs variables that are in script1
  2. script1 is really huge, and the entire page needs to wait for the script to finish loading.

The browser waits for the script to finish because it assumes that the script may have code that may update the page contents using document.write. If your script isn't using document.write, then waiting for the browser to finish loading isn't useful.

In order to get past this, there are two attributes that can be used - defer and async.

  1. defer: defer tells browser that script wont generate any document content and can safely be downloaded without blocking the page and this script should be deferred until all the page is downloaded. defer is executed only when the page is completely parsed.
  2. async: async is similar to defer in the sense that it won't change anything in the DOM, but unlike defer, async scripts are executed as soon as they are downloaded. This is advantageous because scripts can potentially execute sooner.

Syntax -

<script defer src="script1.js"> </script><script async src="script2.js"> </script>
Enter fullscreen mode Exit fullscreen mode

TL;DR
Blocking scripts can slow down page. Use defer or async to limit effects of blocking script. defer and async scripts must not modify page content using document.write.

  1. defer: defer is executed only when the page is completely parsed.
  2. async: async scripts are executed as soon as they are downloaded

Shruti Kapoor
View all recent blogs
Follow on twitter


Original Link: https://dev.to/shrutikapoor08/use-of-defer-and-async-to-limit-the-effects-of-blocking-scripts-in-javascript-5fbl

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To