dadamssg Posted July 24, 2009 Share Posted July 24, 2009 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... Quote Link to comment Share on other sites More sharing options...
seventheyejosh Posted July 24, 2009 Share Posted July 24, 2009 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.