I need to find a table cell that contains certain text value and change that to something else.
<table><tr>
<td>You are nice</td>
<td>I hate you</td>
</tr></table>
Find the table cell that contains "I hate you" and change that to "I love you".
How do I do that in Jquery?