javascript - How to navigate the page automatically in html? -


i have 2 html pages:

  1. flash.html
  2. 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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -