Skip to content

Instantly share code, notes, and snippets.

@salieridk
Created April 17, 2012 10:30
Show Gist options
  • Save salieridk/2405159 to your computer and use it in GitHub Desktop.
Save salieridk/2405159 to your computer and use it in GitHub Desktop.
Javascript: Check all checkboxes (button)
$('#checkIt').click(function() {
if(this.value === 'notChecked'){
$('#educationCheckbox :checkbox').each(function() {
this.checked = true; });
$('#checkIt').val('checked').html('Fjern alle');
}
else{
$('#educationCheckbox :checkbox').each(function() {
this.checked = false; });
$('#checkIt').val("notChecked").html('Vælg alle');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment