0
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 cannot use jquery validate without type Submit.
      $(document).ready(function(){
      $("#login-form-patient").validate({
        rules: {
           ........
        }
  });
Anyone know how to do it? Thank you
vlw friend, it worked.
– jona1has