Reputation: 613
The below link has my web page and i would like to validate all the fields using jquery, the problem is I dont have much space around the fields to display ordinary error messages. I am am a novice and thinking of using jquery validation, so could any of you suggest me the best possible way to do that. http://www.4shared.com/photo/BowU9nFB/page.html
Thanking You,
Indranil
Upvotes: 1
Views: 433
Reputation: 79
There is a flexible jQuery validation system to show error messages in any format you want.
Full doc at jQuery Validation System
more samples at http://www.tectual.com.au/downloads/jquery/validation/index.html
So you can have your validation errors in a popup, tooltip or anywhere else in the page.
You can also extend the validator methods as well.
Upvotes: 1
Reputation: 3556
jQuery plugin: Validation is pretty straight forward and configurable.
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
http://jquery.bassistance.de/validate/demo/
Limit the messages or use jQuery UI Dialog to notify the end user of the errors. No space needed.
http://jqueryui.com/demos/dialog/
Upvotes: 1