Forum Moderators: open
function confirmDelete(){
if (confirm("Delete this record?"))
{
//this.window.location = "http://www.myURL.com";
//response.redirect ("http://www.myURL.com");
}
else
{
return;
}
}
You should be able to do something like:
<form onsubmit="return confirm('Delete this record?');">