Hello, I have a form that uses direct javascript to send the data, and its type is button.
<button type="button" id="login_submit_patient" class="btn btn-focus m-btn m-btn--pill m-btn--custom m-btn--air uppercase">
But I can not use jquery validate without for type submit.
$(document).ready(function(){
$("#login-form-patient").validate({
rules: {
........
}
});
Does anyone know how to do it? Thank you