Any one know how to Force some one to go to anther page using JS
i got this but it just hangs.
Code:function logout( )
{
var r=confirm("Are you sure you want to logout?");
if (r==true)
{
document.write('<meta http-equiv="refresh" content="0;URL=logout.php" />');
}
else
{
}
}

