<html> <body> <p>You will be redirected in 5 seconds</p> <script> var timer = setTimeout(function() { window.location='http://hormart.com' }, 5000); </script> </body> </html>
// target blank redirection window.open('http://www.example.com', '_blank'); // parent redirection window.location.href = "http://www.example.com";