Skip to content

Instantly share code, notes, and snippets.

@dindinet
Created February 10, 2025 20:31
Show Gist options
  • Select an option

  • Save dindinet/72a9316ee66c9cdcc3e58f169a9c7b15 to your computer and use it in GitHub Desktop.

Select an option

Save dindinet/72a9316ee66c9cdcc3e58f169a9c7b15 to your computer and use it in GitHub Desktop.
De-select all checkboxes on the page
var list = document.querySelectorAll('input[type=checkbox]');
for (var item of list) {
item.checked = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment