Answers for "html wait for javascript to load"

1

how to tell the javascript to wait until the site loads in the html

use the 'defer' keyword
<script type="text/javascript" src="index.js" defer></script>
Posted by: Guest on August-10-2021
0

wait for the dom to load javascript

document.addEventListener('DOMContentLoaded', (event) => {
  //the event occurred
})
Posted by: Guest on February-24-2020

Code answers related to "html wait for javascript to load"

Code answers related to "Javascript"

Browse Popular Code Answers by Language