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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.