phpRoshan Posted May 19, 2007 Share Posted May 19, 2007 Hello there, I would like to know how to get a users confirmation (YES or NO)using JS in a web page before the selected item being sent to the server to delete. When the user clicked on YES button then that product details should be deleted from the table. Im using php but knows js very very litle. Can anybody helpe me? Thanks ??? Link to comment https://forums.phpfreaks.com/topic/52080-solved-how-to-get-users-confirmation-before-deleta-any-item/ Share on other sites More sharing options...
tarun Posted May 19, 2007 Share Posted May 19, 2007 Found Something For You <script LANGUAGE="JavaScript"> <!-- // Nannette Thacker http://www.shiningstar.net function confirmSubmit() { var agree=confirm("Are you sure you wish to continue?"); if (agree) return true ; else return false ; } // --> </script> <form method="POST" action="/articles/articles/javascript/confirmsubmit.asp?shoeid=shoes&ID=AW" onsubmit="return confirmSubmit()" id="submitform" name="submitform"> Shoes <input type="Submit" value="Delete" id="Delete" name="Delete"> </form> From: http://www.shiningstar.net/articles/articles/javascript/confirmsubmit.asp?ID=AW Thnx, Tarun Link to comment https://forums.phpfreaks.com/topic/52080-solved-how-to-get-users-confirmation-before-deleta-any-item/#findComment-257133 Share on other sites More sharing options...
phpRoshan Posted May 20, 2007 Author Share Posted May 20, 2007 Perfect!! it indeed did my job. Thanks very much mate. Link to comment https://forums.phpfreaks.com/topic/52080-solved-how-to-get-users-confirmation-before-deleta-any-item/#findComment-257433 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.