i want to dynamically add a class to all rows of a table except the first and last row. how would i do this without assigning a css class to the rows to identify them. I am getting all but the first row currently with
$("#id").find("tr:gt(0)")
i need to combine this with not("tr:last")
somehow maybe?