1
I have this code to delete a bank record. How can I put a jquery (yes no) form action confirmation in my code?
$('#deleteButton').on('click', function(e){
// We don't want this to act as a link so cancel the link action
e.preventDefault();
doDelete();
});