Skip to content

Instantly share code, notes, and snippets.

@darshilv
Created February 13, 2014 17:55
Show Gist options
  • Save darshilv/8980311 to your computer and use it in GitHub Desktop.
Save darshilv/8980311 to your computer and use it in GitHub Desktop.
Unchecking all checkboxes for a Profile in Salesforce Setup
elems = document.getElementsByTagName("input");
for( x in elems ){
if(elems[x].type == "checkbox") elems[x].checked = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment