How can i shift to other page when my timer shows t<=0 .i.e
timeout?
<script
language="JavaScript">
var time = null
function go() {
window.location = 'form.jsp'
}
</script>
<body onload="timer=setTimeout('go()',2000)">
</body>
var time = null
function go() {
window.location = 'form.jsp'
}
</script>
<body onload="timer=setTimeout('go()',2000)">
</body>
Comments
Post a Comment