Hi,
I have a table and can count the number of rows using var count = $("table tr").length;
Basically, I have up and down arrow controls to reorder the rows in the table. I do not want the down arrow to appear for the last row and similarly the up arrow to appear for the top row.
Is there a way to refer to specific rows in the table so that I can prevent this?
Thanks.