game mobile 12guns yoyo chat quan legging hoi fa theme wordpress chuyen vo chong winplay tai winplay download winplay game winplay winplay online cach tri mun nhanh nhat cach tri mun ruoi cach tri mun tot nhat

Easiest “check all” with jQuery

January 13th, 2011 | posted in Blog, Tips & Tricks, jQuery | No Comments »

The jquery code:

<script type="text/javascript">
$(function () {
    $('.checkall').click(function () {
        $('.chk').attr('checked', this.checked);
    });
});
</script>

The html:

<input type="checkbox" class="checkall"/>
<input type="checkbox" value="1" class="chk"/>
<input type="checkbox" value="2" class="chk"/>
<input type="checkbox" value="3" class="chk"/>
<input type="checkbox" value="4" class="chk"/>
Bookmark and Share

Leave a Comment