jQuery-Form-Validator
jQuery-Form-Validator copied to clipboard
Display Bootstrap Modal DIalog after form Submitted
Hello, I would like to show the Bootstrap Modal DIalog after submitted the Form. Below is my code but its doesn't show me Modal Dialog, Please check
$.validate({
form : '#feedback-form',
onSuccess : function($form) {
$("#feedback-alert").modal("show");
}
});