[Solved] Up and Down rows from table
Just change appendTo() to insertBefore() and insertAfter() $(document).ready(function() { $(“#table1 tbody tr”).click(function() { $(this).toggleClass(‘selected’); }); }); $(document).ready(function() { $(“#table2 tbody tr”).click(function() { $(this).toggleClass(‘selected’); }); }); $(document).ready(function() { $(“.down”).click(function() { $(‘#table1 tr’).each(function() { if ($(this).attr(‘class’) == ‘selected’) { $(this).insertAfter($(this).nextAll(‘:not(.selected)’).eq(0)); } }); }); }); $(document).ready(function() { $(“.up”).click(function() { $(‘#table1 tr’).each(function() { if ($(this).attr(‘class’) == ‘selected’) { $(this).insertBefore($(this).prevAll(‘:not(.selected)’).eq(0)); … Read more