Skip to content

Instantly share code, notes, and snippets.

@roatnek
Last active March 13, 2017 07:26
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 roatnek/574433728e7f68c7a929fcc9c073a500 to your computer and use it in GitHub Desktop.
Save roatnek/574433728e7f68c7a929fcc9c073a500 to your computer and use it in GitHub Desktop.
チェックしたチェックボックスをアンチェックする
var checkbox = document.querySelector('input[type="checkbox"]');
checkbox.addEventListener('click', function(event) {
event.target.checked = false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment