Answers for "how to write onload function in javascript"

0

javascript execute code on page load

<html>
 
  <body onload="loaded();"></body>
  <script>
    function loaded() {
      alert('Page is loaded');
    }
 
  </script>
 
</html>
Posted by: Guest on November-18-2020
0

js document onload

//use
window.onload=()=>{};
Posted by: Guest on April-11-2020
0

javascript onload complete

document.addEventListener('DOMContentLoaded', function() {
   // your code here
}, false);
Posted by: Guest on July-30-2021

Code answers related to "how to write onload function in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language