[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Jake McGraw
Maybe, within click or change: $([EMAIL PROTECTED]).change(function(){ $(this).parent().siblings(td:eq(3)). /* do something */; }); So you document should look like: tr tdinput type=radio name=mybutton//td td/td td/td td!-- This is your target --/td td/td ... /tr The chain order:

[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Andy Matthews
, 2007 4:03 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Getting column value for a selected table row? Maybe, within click or change: $([EMAIL PROTECTED]).change(function(){ $(this).parent().siblings(td:eq(3)). /* do something */; }); So you document should look like: tr tdinput

[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Karl Swedberg
PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Getting column value for a selected table row? Maybe, within click or change: $([EMAIL PROTECTED]).change(function(){ $(this).parent().siblings(td:eq(3)). /* do something */; }); So you document should look like: tr tdinput type=radio

[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Brad Perkins
On May 25, 3:02 pm, Jake McGraw [EMAIL PROTECTED] wrote: Maybe, within click or change: $([EMAIL PROTECTED]).change(function(){ $(this).parent().siblings(td:eq(3)). /* do something */; }); So you document should look like: tr tdinput type=radio name=mybutton//td td/td td/td

[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Jake McGraw
Okay, cool, glad it worked! - jake On 5/25/07, Brad Perkins [EMAIL PROTECTED] wrote: On May 25, 3:02 pm, Jake McGraw [EMAIL PROTECTED] wrote: Maybe, within click or change: $([EMAIL PROTECTED]).change(function(){ $(this).parent().siblings(td:eq(3)). /* do something */; }); So you