Skip to content

Instantly share code, notes, and snippets.

@jasonandmonte
Created January 14, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonandmonte/e01edd9009d4d2f75592dad1bc39bd69 to your computer and use it in GitHub Desktop.
Save jasonandmonte/e01edd9009d4d2f75592dad1bc39bd69 to your computer and use it in GitHub Desktop.
Checks all the boxes on the web page for the Magento export.
var inputs = document.getElementsByTagName("input");
for(var i = 0; i < inputs.length; i++) {
if(inputs[i].type == "checkbox") {
inputs[i].checked = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment