Skip to content

Instantly share code, notes, and snippets.

@bhavaniravi
Created November 14, 2021 23:43
Show Gist options
  • Save bhavaniravi/1ca71e50c71f5ddbbe298eb3cfc6990e to your computer and use it in GitHub Desktop.
Save bhavaniravi/1ca71e50c71f5ddbbe298eb3cfc6990e to your computer and use it in GitHub Desktop.
Untweeps Check All
function check(ele) {
ele.checked = true;
}
x = document.getElementsByName("id");
x.forEach(element => check(ele));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment