:checked
by prabhu5013
HTML
<input type="checkbox"/>RED
<input type="checkbox"/>green
<input type="checkbox"/>blue
<input type="checkbox"/>yellow
<input type="checkbox"/>pink
<input type="checkbox"/>orange
<button >click</button >
JavaScript
$('button').click(function(){
alert($('input:checked').length);
});