Answers for "call function outisde of on load from within on load"

4

javascript start function on load

window.onload = function() {
// Your code
};
Posted by: Guest on July-30-2021
2

window.onload execute after load page

/* javascript function is executed after 5 seconds page was loaded */
window.onload = function() {
   setTimeout(loadAfterTime, 5000)
}; 
 
function loadAfterTime(){
   document.getElementById("menu").style.display="block";
}
Posted by: Guest on October-30-2020

Code answers related to "call function outisde of on load from within on load"

Code answers related to "Javascript"

Browse Popular Code Answers by Language