This is a piece of my function with the
question in
it:
function deletePost()
{
var ask = window.confirm("Are you sure you want to delete this
post?");
if (ask) {
window.alert("This post was successfully
deleted.");
/* How to redirect to another page on
confirm? */
}
}
Pure
Javascript needed.
class="normal">Answer
try
this:
function
deletePost() {
var ask = window.confirm("Are you sure you want to delete this
post?");
if (ask) {
window.alert("This post was successfully
deleted.");
window.location.href =
"window-location.html";
}
}
No comments:
Post a Comment