Jim on April 17th, 2011




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.

Continue reading about jQuery Date Picker Plugin

Jim on April 17th, 2011




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

Jim on April 17th, 2011




3. JQuery Textbox Hinter Plugin

Continue reading about JQuery Textbox Hinter Plugin




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

Jim on April 17th, 2011




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.

Continue reading about How to get textbox value with jQuery