I need to confirm deletion using Bootstrap 3 modal box (YES/NO). How can I create this?
HTML code:
&
You can use Bootbox dialog boxes
$(document).ready(function() { $('#btnDelete').click(function() { bootbox.confirm("Are you sure want to delete?", function(result) { alert("Confirm result: " + result); }); }); });
Plunker Demo