Ok,
Here's the exampe:
<table>
<tr>
<td>
<type="button" id="mybutton" value="insert">
</td>
<td>
<textarea>My Text</textarea>
</td>
</tr>
</table>
I need to change the textarea value when I click on my button. The value will come from a set variable. This code has no other IDs or classes to refer to. So I have the following
jQuery('#mybutton').click(function(){
jQuery(this).parent().next()...????;
});
This will get me to the next column, but I don't know how to select the textarea from there.
I tried child(), another next() but no luck.