Skip to content

Instantly share code, notes, and snippets.

@mcwhittemore
Created October 20, 2013 07:04
Show Gist options
  • Save mcwhittemore/7065851 to your computer and use it in GitHub Desktop.
Save mcwhittemore/7065851 to your computer and use it in GitHub Desktop.
var rows = document.querySelectorAll(".row a");
var find = "USER-NAME";
for(var i=0; i<rows.length; i++){
if(rows[i].innerText==find){
console.log(i+1, rows[i]);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment