Skip to content

Instantly share code, notes, and snippets.

@luizperes
Created October 20, 2016 00:39
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 luizperes/c2d834c380458009e818c1d9dcf7b116 to your computer and use it in GitHub Desktop.
Save luizperes/c2d834c380458009e818c1d9dcf7b116 to your computer and use it in GitHub Desktop.
var table = document.getElementsByClassName("blob-wrapper")[0].getElementsByTagName("table")[0];
var cells = table.querySelectorAll('tbody td');
for (var i = 0, cell; cell = cells[i]; i++) {
if (cell.id.indexOf("LC") !== -1) {
console.log(cell.innerHTML);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment