windows load with settimeout

Solutions on MaxInterview for windows load with settimeout by the best coders in the world

showing results for - "windows load with settimeout"
Emily
12 Sep 2017
1window.onload = function(){
2   setInterval(function(){
3       alert("Hello");
4   }, 10000);
5};
Fabio
14 Feb 2016
1window.onload = function(){
2 setTimeout(function(){
3   alert("Hello");
4 }, 10000);
5};