Skip to content

Instantly share code, notes, and snippets.

@cokara
Created June 13, 2014 13:15
Show Gist options
  • Save cokara/bc21cf7040bc49be5978 to your computer and use it in GitHub Desktop.
Save cokara/bc21cf7040bc49be5978 to your computer and use it in GitHub Desktop.
Unique number of failed queues.
(function() { var fails = {}; $('tr').each(function(ind, row) { var last = +row.children[4].innerText, name = row.children[0].innerText; if(last && name != 'Total'){ fails[name] = last; } } ); console.log(fails); console.log(Object.keys(fails).length); }())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment