I want yes/No alerts using jQuery,instead of ok/Cancel button.
jQuery.alerts.okButton = ' Yes ';
jQuery.alerts.cancelButton = ' No ';
jConfirm('Are you sure??', '', function(r) {
if (r == true) {
//Ok button pressed...
}
}
Any other alternatives?