You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# In HTML5, you can tell the browser when to run your JavaScript code
365
+
```javascript
366
+
367
+
//Without async or defer, browser will run your script immediately, before rendering the elements that'sbelowyourscripttag.
368
+
<scriptsrc="myscript.js"></script>
369
+
370
+
//With async (asynchronous), browser will continue to load the HTML page and render it while the browser load and execute the script at the same time.
371
+
//Async is more useful when you really don't care when the script loads and nothing else that is user dependent depends upon that script loading.(for scripts likes Google analytics)
372
+
<scriptasyncsrc="myscript.js"></script>
373
+
374
+
//With defer, browser will run your script when the page finished parsing. (not necessary finishing downloading all image files.
0 commit comments