Skip to content

Instantly share code, notes, and snippets.

@rogersguedes
Created October 14, 2016 20:19
Show Gist options
  • Select an option

  • Save rogersguedes/bd188cdf8406ecb314ab94a9ad8e0b06 to your computer and use it in GitHub Desktop.

Select an option

Save rogersguedes/bd188cdf8406ecb314ab94a9ad8e0b06 to your computer and use it in GitHub Desktop.
($("table")[0]).find("tr td[id]").each(function(index){
if($( this ).find("p span").length > 0){
var innerText = $( this ).find("p span").text().replace("\n", "").replace("\t", " ");
console.log(innerText);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment