[jQuery] Select td text
[jQuery] Select td text
How can I select the text of the td below with jquery?
For example:
{code}
<td jscontent="address" style="vertical-align: middle; width: 100%;"
jstcache="9">8050 Drexel Ct, Lemon Grove, CA 91945</td>
{code}
I tried with something like this without much success:
{code}
var vtd = $(".googledir > table > tbody >tr > td:contains('8050 Drexel
Ct, Lemon Grove, CA 91945')").text();
console.log('vtd: %s', vtd);
{code}
Thanks