0

I have use the jquery.validate.js for validate the input field present in the form .

In this I have use the following

Validationrule, required, minlength 3 for input field.

In my case once start the editing in input , error message displayed,

My requirement is I want to show the error message only button click/EnterKey .

Is it possible to achieve this using jquery.validate.js

Raja
  • 209
  • 1
  • 7
  • 16

1 Answers1

0

As per the documentation you need to disable onfocusout: and onkeyup: options

refer documentation for more help

Pushker Yadav
  • 866
  • 1
  • 8
  • 15