using jquery UI sortable with html tables-open source projects RubaXa/Sortable

what I want to achieve is to print some data from database to user in html table, and the user should be able to reorder table rows, so i used jquery ui sortable:


    $(function() {
        $( "#sortable" ).sortable();
        $( "#sortable" ).disableSelection();
    });