The datePicker plugin is a popup calendar widget and then some. It allows you to add popup calendars to your forms to make it easier for users of your website to enter dates.
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.


