jQuery custom styled checkbox alows to create custom css styled checkboxes (and radio buttons, too). It is a replacement for the standard checkbox that allows you to change the look of checkbox elements in your page.
jQuery is a Javascript framework which can simplify coding Javascript for a website and removes a lot of cross browser compatibility issues. Yesterday I looked at how to get and set form element values with jQuery but did not deal with checkboxes. This post looks at how to tell if an HTML form checkbox is checked or not checked with jQuery and then how to change it to be un/checked.
Continue reading about How to check and uncheck a checkbox with jQuery
The jQuery Checkbox selector selects all elements of type checkbox. $( :checkbox ) is equivalent to $( [type=checkbox] ). As with other pseudo-class selectors (those that begin with a
it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector (*) is implied. In other words, the bare $( :checkbox ) is equivalent to $( *:checkbox ), so $( input:checkbox ) should be used instead.
Paging-listbox is yet another jQuery plugin that allows to create a wonderful user interface in forms.
jListbox is a jquery plugin to obtain a formatted select box.
Continue reading about jListbox – jquery plugin for formatted select box
