Skip to content

Instantly share code, notes, and snippets.

@salieridk
Created April 17, 2012 10:28
Show Gist options
  • Save salieridk/2405143 to your computer and use it in GitHub Desktop.
Save salieridk/2405143 to your computer and use it in GitHub Desktop.
Javascript: check checkbox by clicking text
//makes it possible to check checkbox by clicking the associated text.
$('.checkboxes').click(function(event) {
if (event.target.type !== 'checkbox') {
$(':checkbox', this).trigger('click');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment