Jump to content

ajax confirmation dailog box.


srinivas6203

Recommended Posts

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.