Maybe, within click or change:

$("[EMAIL PROTECTED]").change(function(){
 $(this).parent().siblings("td:eq(3)"). /* do something */;
});

So you document should look like:

<tr>
 <td><input type="radio" name="mybutton"/></td>
 <td></td>
 <td></td>
 <td><!-- This is your target --></td>
 <td></td>
 ...
</tr>

The chain order:

$(this)  --> the radio button
.parent() --> The td element wrapped around radio button
.siblings("td:eq(3)") --> All td element siblings, get the fourth

Haven't tested, hope it works for you.

- jake

On 5/25/07, Brad Perkins <[EMAIL PROTECTED]> wrote:


Given a table where the the first column of each row contains a radio
button.

Is there some jQuery selector magic that would allow me to get the
value of the cell in the 4th column when the radio button is selected?


Reply via email to