javascript - How to navigate the page automatically in html? -
i have 2 html pages:
- flash.html
- main.html
in want load flash.html page first 5 seconds , automatically main.html have load how ?
i have tried settimeout(function(){ splashbegone(); }, 5000);
but not getting answer can me ?
what in splashbegone()
?
i assume like;
settimeout( function(){window.location.href = "main.html"},5000);
Comments
Post a Comment