Skip to content

Instantly share code, notes, and snippets.

@lordgraysith
Created March 22, 2017 20:19
Show Gist options
  • Save lordgraysith/b812aa38e8ceec77dfe98c13c756f88c to your computer and use it in GitHub Desktop.
Save lordgraysith/b812aa38e8ceec77dfe98c13c756f88c to your computer and use it in GitHub Desktop.
const deleteAllJobs = function() {
const elements = document.getElementsByClassName('remove')
const links = [].slice.call(elements)
links.map(link => link.click && link.click())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment