Jump to content

confirm box help


dadamssg

Recommended Posts

I'm trying to create a confirm box for deleting personal messages. I want to ask "Really delete?" and then have a "yes" and a cancel button. When the yes button is clicked i want to send the user to a different page. something like this....

<script type="text/javascript">
function show_confirm()
{
var r=confirm("Really delete?");
if (r==true)
  {
send to a certain page
  }
else
  {
get rid of the alert box
  }
}
</script>

 

and then

 

<input type="button" onclick="show_confirm()" value="Delete" />

 

i just don't now what the javascript syntax for sending a user to a page is...

Link to comment
https://forums.phpfreaks.com/topic/167204-confirm-box-help/
Share on other sites

 

 

function verify(){

 

if(confirm('Sure?')){

 

    window.location.href='/newpath/';

 

}//end if

 

}//end function

 

<input type="submit" value="Delete" onclick="verify();">

 

that should prompt the user, and if they hit yes, it'll go to the new page. if they hit no, the function ends.

 

lemme know

Link to comment
https://forums.phpfreaks.com/topic/167204-confirm-box-help/#findComment-881650
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.