Skip to content

Instantly share code, notes, and snippets.

@orhanveli
Created November 14, 2011 20:47
Show Gist options
  • Save orhanveli/1365105 to your computer and use it in GitHub Desktop.
Save orhanveli/1365105 to your computer and use it in GitHub Desktop.
check/uncheck all checkboxes with jquery
$('.checkall').click(function () {
$(this).parents('fieldset:eq(0)').find('.check:checkbox').attr('checked', this.checked);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment