Partially select checkbox with javascript

HTML5 defines the indeterminate boolean property.

I’ve tested it only in the latest Safari, Chrome, and Firefox. They all support the indeterminate state.

Example: http://jsfiddle.net/5tpXc/

Edit: Note that this wont work with older browsers and maybe not with current versions of IE. You’d need to rely on hacks as described in other answers here if you want to support all browsers.

Leave a Comment