Mike Miller wrote:
Haven't been able to find any documentation so far that talks about
how to move rows around with jquery.  Don't really need to sort the
whole table...rather I want to move one row to another position.  Can
this be done?

The following should work as long as I'm not missing something:

$('tr:last-child').insertBefore('tr:first-child');

(moves last row to first)


--Klaus


Reply via email to