srinivas6203 Posted August 5, 2008 Share Posted August 5, 2008 Hi all I want to delete some item from my website. If i click on "delete" link, the ajax confirmation dailog box have popup. Can any one send links or scripts Thanq Quote Link to comment Share on other sites More sharing options...
dilum Posted August 6, 2008 Share Posted August 6, 2008 You can use simple javascript for this, function deleteConfirm() { var a = confirm("any message here"); if (a) { return true; } else { return false; } } your delete link may be link this, <a href="delete.php" onclick="return deleteConfirm()"> Delete </a> Quote Link to comment Share on other sites More sharing options...
srinivas6203 Posted August 7, 2008 Author Share Posted August 7, 2008 Hi dilum Thanx for ur reply. I am asking about ajax confirmation dailogue box. Not a normal javascript. I hope u will be understood. Thanq 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.