How to self redirect a page to another page on load
Posted: Thu Nov 11, 2010 5:35 pm
There are situation that we need to redirect to another page when we open a page. Here is the code for that.
Code: Select all
<html>
<head>
<script language="javascript" type="text/javascript">
function redirect () {
window.location.href = "http://yoururl.com/yourpage.html";
}
</script>
</head>
<body onload="redirect()">
</body>
</html>