Skip to content

Instantly share code, notes, and snippets.

@cuteofdragon
Forked from yaph/checkboxes.js
Created October 27, 2023 19:14
Show Gist options
  • Save cuteofdragon/7c3228b66f4cac0d4547d2ecff5d4723 to your computer and use it in GitHub Desktop.
Save cuteofdragon/7c3228b66f4cac0d4547d2ecff5d4723 to your computer and use it in GitHub Desktop.
Check or uncheck all check boxes using browser JavaScript console
# JS snippet for email notification settings, e. g. Twitter
cb=document.querySelectorAll('input[type="checkbox"]');for(i in cb){cb[i].checked=false}
# for Drupal 4.x comment approval form
cbx=document.getElementsByClassName('form-checkbox');for(i in cbx){cbx[i].checked=true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment