Does anyone know a jQuery plugin in which I can move a table row from one table to another table? I know sortable with ConnectedLists, but I don't want no dragging, just moving the object with a method.
This works with jQuery. Just use
tr.appendTo('#otherTable')
or
tr.prepend('otherTR')