piku
piku

Reputation: 613

validation using jquery

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

Answers (3)

James
James

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

gurun8
gurun8

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

Adam
Adam

Reputation: 44929

Use the jQuery plug-in Ketchup it uses little floating talk bubbles so not as much space is needed.

Upvotes: 5

Related Questions