Skip to content

Instantly share code, notes, and snippets.

@wesgarrison
Created December 16, 2011 03:46
Show Gist options
  • Select an option

  • Save wesgarrison/1484362 to your computer and use it in GitHub Desktop.

Select an option

Save wesgarrison/1484362 to your computer and use it in GitHub Desktop.
Bookmarklet to remove zero entry lines from Harvest uninvoiced report
$$('tbody .btn-disabled').each(
function(element,index) {
element.up('tbody').hide()
}
);
$$('td.ur-name a.gray').each(
function(element,index){
element.up('tr').hide()
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment