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 ??? Quote Link to comment 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 Quote Link to comment 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. 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.