I am using this plugin: http://wiki.github.com/augustl/live-validations/ to check if the form field entered is valid or not. How do i disable the live validation for keypress and instead make it only fire when the submit button is clicked?
+1
A:
Why not use the jQuery Validation plugin to handle this at the submit event?
RedWolves
2010-06-03 03:26:23
Actually it already does that. I just don't want it checking on every keypress. How do i disable that?
Shripad K
2010-06-03 04:13:32
on keypress of each input element call jquery validation method element(). look it up this allows you to call validation code 1 element at a time
John Hartsock
2010-06-03 21:49:51