Why isn’t this code working?
The browser won’t redirect to the new page, but the alert box shows, so i know that the conditional statement works.
The location.href trick should also work, but here it doesn’t.
function confirm(num) {
var r=confirm("Press a button")
if (r==true)
{
alert(location.href);
location.href="http://www.kirupa.com/"
}
else
{
document.write("You pressed Cancel!")
}
}
And the strange thing is that if i paste it into here the code is working… What setting is wrong?