How to develop confirmation dialog with yes no button using jquery or any other method ? I need that confirmation when I click on submit button.
I have a solution, it is working for me.
$.alerts.okButton = ' Yes '; $.alerts.cancelButton = ' No '; jConfirm('Are you sure??', '', function(r) { if (r == true) { //Ok button pressed... } });