CHAPTER - 16

Javascript Redirect

<html>

<head>
<script type="text/javascript">
function delayer(){
window.location = "http://www.google.com"
}
</script>
</head>
<body onLoad="setTimeout('delayer()', 5000)">
<h2>Prepare to be redirected!</h2>
<p>This page is a time delay redirect, please update your bookmarks to our new
location!</p>
</body>
</html>

Comments

Popular posts from this blog

CHAPTER - 14

CHAPTER - 18