Skip to content

Instantly share code, notes, and snippets.

@djaoka
Created February 20, 2014 09:36
Show Gist options
  • Save djaoka/9110079 to your computer and use it in GitHub Desktop.
Save djaoka/9110079 to your computer and use it in GitHub Desktop.
Unselect all checkboxes on a page - VanillaJS
[].forEach.call(document.querySelectorAll(" input[type='checkbox']"), function(el) { el.checked = false; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment