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