Skip to content

Instantly share code, notes, and snippets.

@stoyan
Created April 12, 2017 08:54
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 stoyan/2b2c85b86c4ccee52d467ef48d28672f to your computer and use it in GitHub Desktop.
Save stoyan/2b2c85b86c4ccee52d467ef48d28672f to your computer and use it in GitHub Desktop.
<script>
document.getElementById('wrapper').addEventListener('click', function(event) {
var checkbox = event.target.querySelector('input[type=checkbox]');
if (checkbox) {
checkbox.checked = !checkbox.checked;
}
}, true);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment