views:

285

answers:

2

Form validation plugin:
http://bassistance.de/jquery-plugins/jquery-plugin-validation/

Test url:
http://docs.jquery.com/Plugins/Validation

How to reproduce:
1.) Click on the name text input. Enter "12345".
2.) Tab to the next field. Enter an invalid email such as "12345@".
3.) Click on the name text input. Delete the data in the field.
4.) Click to an empty field.

Notice how the name field no longer reports incorrect data. It will be stuck like this until you refresh the page or make the email address valid. This is not the behavior I need, and I believe the spec says that this is incorrect. Any thoughts on how to resolve this?

A: 

Yes, but when you press submit, it asks for the name again.

Natkeeran
...I understand that. I need realtime validation though, and this problem seems to be a violation of the specification.
Stefan Kendall
A: 

This is just a bug in the library. There is no obvious workaround.

Stefan Kendall