Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created July 26, 2012 03:39
Show Gist options
  • Save ekka21/3180107 to your computer and use it in GitHub Desktop.
Save ekka21/3180107 to your computer and use it in GitHub Desktop.
jQuery: check all checkboxes
// First way
$('#checkBox').attr('checked');
// Second way
$('#edit-checkbox-id').is(':checked');
//input name array
$('input[name=SOME_NAME\\[\\]]').is(':checked')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment