views:

21

answers:

1

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
Actually it already does that. I just don't want it checking on every keypress. How do i disable that?
Shripad K
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