Answers for "settimeout on page load"

0

javascript run something after x seconds

setTimeout(function(){
  location.reload();
}, 3000); //run this after 3 seconds
Posted by: Guest on August-07-2020
0

windows.load with settimeout

window.onload = function(){
   setInterval(function(){
       alert("Hello");
   }, 10000);
};
Posted by: Guest on August-20-2020
0

windows.load with settimeout

window.onload = function(){
 setTimeout(function(){
   alert("Hello");
 }, 10000);
};
Posted by: Guest on August-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language