function askData() {
var msg = "Sure you want Delete this record?";
if (confirm(msg))
window.location = "newpage.htm";
else
alert("ok"
}
<a href="#" onclick="askData();">click here</a>
I can't get it so when someone clicks ok in the confirm box they are sent to a new page!? Any help would be most appreciated!
var msg = "Sure you want Delete this record?";
if (confirm(msg))
window.location = "newpage.htm";
else
alert("ok"
}
<a href="#" onclick="askData();">click here</a>
I can't get it so when someone clicks ok in the confirm box they are sent to a new page!? Any help would be most appreciated!