Skip to content

Instantly share code, notes, and snippets.

@ramons03
Created March 7, 2017 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramons03/42cfa0d4fbf7919a3f918903f79f2ece to your computer and use it in GitHub Desktop.
Save ramons03/42cfa0d4fbf7919a3f918903f79f2ece to your computer and use it in GitHub Desktop.
Uncheck all checkbox in javascript console.
var allInputs = document.getElementsByTagName("input");
for (var i = 0, max = allInputs.length; i < max; i++){
if (allInputs[i].type === 'checkbox')
allInputs[i].checked = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment