Answers for "onload js function"

4

window onload javascript

//Use window.onload to to execute JavaScript only after the HTML has loaded
//Syntax: 
window.onload = function() {
  //JavaScript goes here
}
Posted by: Guest on April-04-2021
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language