Jim on April 17th, 2011




A simple way to tell if a checkbox has been checked using jQuery.

Continue reading about How to tell if a checkbox is checked using jQuery

Jim on April 17th, 2011




jQuery – Checkbox manipulation provides you with various plugins for working with checkboxes.

Continue reading about jQuery – Checkbox manipulation

Jim on April 17th, 2011




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.

Continue reading about jQuery custom styled checkbox

Jim on April 17th, 2011




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

Jim on April 17th, 2011




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.

Continue reading about jQuery Checkbox Selector