Skip to content

Instantly share code, notes, and snippets.

@BhaveshSGupta
Created September 24, 2018 04:17
Show Gist options
  • Save BhaveshSGupta/ce8a8524ff5f2be3f644656a32352649 to your computer and use it in GitHub Desktop.
Save BhaveshSGupta/ce8a8524ff5f2be3f644656a32352649 to your computer and use it in GitHub Desktop.
Gmail HTMl view select all mail
checkboxes = document.getElementsByName('t');
for(var i=0, n=checkboxes.length;i<n;i++) {
checkboxes[i].checked = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment