auto redirected page in java script
auto redirected
<html>
<head>
<script type="text/javascript">
<!--
function Redirect() {
window.location="http://www.google.com";
}
document.write("You will be redirected to main page in 10 sec.");
setTimeout('Redirect()', 10000);
//-->
</script>
</head>
<body>
</body>
</html>
Comments
Post a Comment