Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Redirect to any page after 5 seconds in Javascript

// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #Redirect #page #seconds #Javascript
ADD COMMENT
Topic
Name
9+5 =