Skip to content

Instantly share code, notes, and snippets.

@dhlavaty
Created September 20, 2018 08:32
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 dhlavaty/8e10e5daf63452485591d028b36d8aea to your computer and use it in GitHub Desktop.
Save dhlavaty/8e10e5daf63452485591d028b36d8aea to your computer and use it in GitHub Desktop.
Fingera.com - better report bookmarklet

Fingera - better report bookmarklet

Create a new bookmark somewhere in your browser with the following URL:

javascript:(function(){ var last = ''; var color = 'transparent'; $('#list_table_body tr').each(function (index, el) { var actual = $(el).children(":first").text(); if (actual !== last) { color = (color === 'transparent') ? '#eee':'transparent'; } last=actual; $(el).css('background-color', color); }); })(); 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment