Skip to content

Instantly share code, notes, and snippets.

@joshuatz
Created March 24, 2019 17:47
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 joshuatz/93b0ae34d363d331d953725af8c58ecc to your computer and use it in GitHub Desktop.
Save joshuatz/93b0ae34d363d331d953725af8c58ecc to your computer and use it in GitHub Desktop.
var checkboxes = document.querySelectorAll('form[name="f"][method="POST"] table td > input[type="checkbox"]').forEach(function(c){
c.checked = true;
});
var deleteAllForever = document.querySelector('input[type="submit"][value="Delete Forever"]');
var deleteAll = document.querySelector('input[type="submit"][value="Delete"]');
deleteAllForever ? deleteAllForever.click() : deleteAll.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment