Skip to content

Instantly share code, notes, and snippets.

@mantaskaveckas
Created June 3, 2015 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mantaskaveckas/d36c11f95c143754892d to your computer and use it in GitHub Desktop.
Save mantaskaveckas/d36c11f95c143754892d to your computer and use it in GitHub Desktop.
Custom HTML checkbox toggle
$('label').on('click', function() {
$(this).siblings('input').attr('checked', function(index, attr) {
return attr == 'checked' ? null : 'checked';
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment