JSFiddle - React, Tailwind, and code Playground

by santeriv

HTML

<table id="table-1" cellspacing="0" cellpadding="2" border="1">
    <tr id="1"><td>1</td><td>One</td><td>some text</td></tr>
    <tr id="2"><td>2</td><td>Two</td><td>some text</td></tr>
    <tr id="3"><td>3</td><td>Three</td><td>some text</td></tr>
    <tr id="4"><td>4</td><td>Four</td><td>some text</td></tr>
    <tr id="5"><td>5</td><td>Five</td><td>some text</td></tr>
    <tr id="6"><td>6</td><td>Six</td><td>some text</td></tr>
</table>

JavaScript

$(document).ready(function() {
    $.getScript("http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/js/tablednd.js", function()
    {
            $("#table-1").tableDnD();
    });
});