/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('.delete').click(function (){ var answer = confirm("Are you sure?"); if (answer) { return true; }else{ return false; } });