Skip to content

Instantly share code, notes, and snippets.

@nicksnell
Created November 27, 2012 17:12
Show Gist options
  • Select an option

  • Save nicksnell/4155578 to your computer and use it in GitHub Desktop.

Select an option

Save nicksnell/4155578 to your computer and use it in GitHub Desktop.
Check all Checkboxes - Javascript
javascript:inputs=document.getElementsByTagName('input');for(i=0;i<inputs.length;i++){if(inputs[i].type&&inputs[i].type=='checkbox'){inputs[i].checked=true;}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment