$("table:first > tr:first")
$("table:first").find("tr:first")
$("table:first").children("tr:first")
$("table").eq(0).children("tr").eq(0)
Selecting first row from multiple tables You need to use nth-child() or first-child(): $('.t13Standard tr:first-child')or $('.t13Standard tr:nth-child(1)')The pseudo selectors :first, :eq(), :gt() etc are performed on the result set not in relation to other elements. The selectors :first-child, :last-child, :nth-child() are performed in relation to the elements
Mark This Response as Answer -- Chandu http://www.dotnetfunda.com/images/dnfmvp.gif
Login to post response