Skip to content

Instantly share code, notes, and snippets.

@adkdev
Created March 31, 2016 18:25
Show Gist options
  • Save adkdev/8e898a84fad4c587fb22fd7be928dd99 to your computer and use it in GitHub Desktop.
Save adkdev/8e898a84fad4c587fb22fd7be928dd99 to your computer and use it in GitHub Desktop.
checked all checkbox
var el = document.getElementsByTagName('input');
for (var i=0; i<el.length; i++) { el[i].checked = true; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment