Re: [jQuery] Beginners problem with selectors

2009-11-21 Thread Michael Geary
So you are saying you want the entire last row of the outer table, not the last row of the inner table, is that right? IOW, what you want to get back is this row: testNew test If that's right, you're just missing a '>' in your selector. Change it from: var $row = $('table#list tbody>tr:last');

[jQuery] Beginners problem with selectors

2009-11-21 Thread jkrassman
Hi, sorry if I am posting in the wrong group? I am having a simple nested table, looks like this test New test So my problem is that I cant get the last TR within the first table? var Obj = $("table#list tbody>tr:last"); Of course it looks at the last in the table, but how should I mana