Skip to content

Instantly share code, notes, and snippets.

@darshilv
Last active August 29, 2015 13:56
Show Gist options
  • Save darshilv/8980227 to your computer and use it in GitHub Desktop.
Save darshilv/8980227 to your computer and use it in GitHub Desktop.
For selecting "Default Off" for all the select options in the Profile Settings in Salesforce Setup.
elems = document.getElementsByTagName("select");
for (x in elems ) {
console.log(elems[x]);
elems[x].children[1].selected = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment