views:

29

answers:

1

On jquery's validate plugin, an error message only disappears after the user has made focus on another element. I want to make it disappear as soon as the right info is written. How can validation be triggered 'onchange'?

+1  A: 
$(".selector").validate({
   onkeyup: true
})
Aaron Saunders
Thanks, I googled this. The setting was messing up with the defaults.
omgzor