One is for redirecting website to new url page and another is for redirecting website to previous history page.
|
|
JavaScript For Redirecting Website Another Page With Time Limit
setTimeout('Redirect()',3000);
function Redirect()
{
location.href = 'http://www.cyberfreewishes.com';
}
</script>
- Please paste above java script in body section of your HTML page.
- 3000 (3 sec) is the time after which the page will be redirected.
- Also please do not forgot to change our website url with your destination url.
JavaScript For Redirecting Website Previous Page With Time Limit
setTimeout('Redirect()',3000);
function Redirect(){
window.history.go(-1);
}
</script>
- Please paste above java script in body section of your HTML page.
- 3000 (3 sec) is the time after which the page will be redirected.
- Your destination url will be yours previous visited page.