How can I force to redirect the page even if the alert
box button is not pushed?
I have code like this:
<script type="text/javascript">
function Redirect()
{
window.location="../index.php";
}
setTimeout('Redirect()', 5000);
alert("You will be redirected to a new page in 5 seconds");
window.location="../index.php";
</script>
Now I have to push the button to be redirected. What I want to do is: if visitor doesn't push OK button in 5 seconds he's forced to ../index.php
and if he push OK button system redirects him immediately to ../index.php