Number of checkboxes checked!

by Joe Saad

HTML

<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />

<div></div>

CSS

input,div {float:left; clear:both; margin:10px;}

JavaScript

$(function(){

    $('input').click(function(){

        $('div').text('you have checked '+$('input:checked').length+' boxes');
    
    });

});