Html 5 Form Plug In With Real-time Validation?
I am looking for a JQuery plugin similar to this, to allow html5 form support across browsers. However, I am looking for one that implements real-time form validation. Giving users
Solution 1:
Forget my comment, I found this: http://ericleads.com/h5validate/ !
Does that suit your needs?
focusout, focusin, change, keyup (Events) These are the "keyboard oriented" events. Better to think of them as non-mouse-specific events. Set them to "true" if you want them to trigger a field validation. Defaults:
focusout:true,
focusin:false,
change:false,
keyup:true
Post a Comment for "Html 5 Form Plug In With Real-time Validation?"