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... Link to comment https://forums.phpfreaks.com/topic/167204-confirm-box-help/ 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 Link to comment https://forums.phpfreaks.com/topic/167204-confirm-box-help/#findComment-881650 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.