Skip to content

Instantly share code, notes, and snippets.

@lamalex
Last active December 19, 2015 20:48
Show Gist options
  • Save lamalex/6015350 to your computer and use it in GitHub Desktop.
Save lamalex/6015350 to your computer and use it in GitHub Desktop.
var dataRows = data.$('tr', '#ctl00_PageContent_usageGridView').filter(function() {
return this.hasClass('gridRow') || this.hasClass('gridRowAlternating');
});
dataRows.each(function(i, elem) {
console.log(elem.html());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment