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