Search code examples
jqueryjquery-ui-sortablejquery-ui-draggablejquery-ui-droppable

jQuery plugin to move a table row from one table to another table


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.


Solution

  • This works with jQuery. Just use

    tr.appendTo('#otherTable')
    

    or

    tr.prepend('otherTR')