Humper
09-12-2006, 03:31 PM
I am trying to redirect a page after about 30 seconds but it hit the page and only stays for 1 sec... what am I doing wrong?
here is the code
<script type="text/javascript">
window.onload=WindowLoad;
function WindowLoad(event)
{
setTimeout("location = 'EquipReport.php';", 30);
}
</script>
how can I change it?
here is the code
<script type="text/javascript">
window.onload=WindowLoad;
function WindowLoad(event)
{
setTimeout("location = 'EquipReport.php';", 30);
}
</script>
how can I change it?