Or for more detailed movement:
  $('tr:eq(3)').insertBefore('tr:eq(1)');
or
  $('tr:eq(2)').insertAfter('tr:eq(5)');
Note: the numbers are the row count - beginning at 0 (zero) for the
first row.

Lookup the jquery :xxx qualifiers for more options.

On Jul 31, 4:16 am, Mike Miller <[EMAIL PROTECTED]> 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?

Reply via email to