Skip to content

Instantly share code, notes, and snippets.

@lleger
Created October 22, 2013 00:27
Show Gist options
  • Save lleger/7093266 to your computer and use it in GitHub Desktop.
Save lleger/7093266 to your computer and use it in GitHub Desktop.
Open Harvest invoices in new tabs
// Pop this into the console to open Harvest invoices in new tabs
var invoices = document.getElementsByClassName('clickable-on');
for(i = 0; i < invoices.length; i++) {
window.open(invoices[i].getAttribute('data-clickable-href'), '_blank');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment