Skip to content

Instantly share code, notes, and snippets.

@neetsdkasu
Created May 12, 2017 19:55
Show Gist options
  • Save neetsdkasu/788d7d9ed7ec76c6e02bef3fbc502157 to your computer and use it in GitHub Desktop.
Save neetsdkasu/788d7d9ed7ec76c6e02bef3fbc502157 to your computer and use it in GitHub Desktop.
checked all checkboxes in a page of website with development console of browser.
var a=document.getElementsByTagName('input');for(i in a){if(a[i].type=='checkbox'){a[i].checked='checked';}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment