Skip to content

Instantly share code, notes, and snippets.

@tirams
Created January 14, 2012 17:44
Show Gist options
  • Save tirams/1612236 to your computer and use it in GitHub Desktop.
Save tirams/1612236 to your computer and use it in GitHub Desktop.
$(function () { // this line makes sure this code runs on page load
$('.checkall').click(function () {
$(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment