Answers for "document loaded ang javascript all js ready"

2

wait for page load js

window.addEventListener('load', function () {
  
})

//THE OTHER ANSWER IS WRONG (has a syntax error)
Posted by: Guest on November-07-2020
-3

js dom ready function

<!doctype html>
<html>
<head>
</head>
<body>
Your HTML here

<script>
// self executing function here
(function() {
   // your page initialization code here
   // the DOM will be available here

})();
</script>
</body>
</html>
Posted by: Guest on October-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language