I want to change the \"Yes! Pick me\" into \"Picked\" with Jquery in the following HTML structure, I used $(\'#myDiv>table>tr>td>table>tr\').eq(1).text(
$(\'#myDiv>table>tr>td>table>tr\').eq(1).text(
You can try:
$("td:contains('Yes! Pick me!')").text("Picked");