Here is another jQuery tutorial demonstrating how to perform text validations using jQuerys blur() event.
Continue reading about jQuery Textbox Validation and the blur event
At times when you want your form to be intuitive, you may want to populate your form with textboxes dynamically. In jQuery, it is quite easy to add or remove a textbox dynamically. The idea is quite simple, just combine the use of counter variable, jQuery createElement(), html() and remove() method.
Continue reading about How to add or remove textbox dynamically with jQuery
A simple tutorial that explains how to fetch the text box value using jQuery. This will help in processing a jQuery form.
To get the textbox value, you can use the jQuery val() function.
For example,
$(?input:textbox?).val() ? Get textbox value.
$(?input:textbox?).val(?new text message?) ? Set the textbox value.

Form Tips is a plugin for the popular javascript library jquery. It enables a form to draw default values or messages into input/textarea elements. The text is fetched from the title-attribute of the element.

