# TableDnD [](https://badge.fury.io/js/tablednd) [](https://cdnjs.com/libraries/TableDnD) [](https://www.jsdelivr.com/package/gh/isocra/TableDnD) [](https://houndci.com) ## Installation TableDnD is easy to install: ``` npm install --save tablednd ``` or ``` yarn add tablednd ``` or ``` bower install https://github.com/isocra/TableDnD.git ``` Alternatively you can simply reference from CDNJS: ```html ``` or ```html ``` You'll also need to include [jQuery](https://jquery.com) before you include this plugin (so that jQuery is defined). --- ## Getting Started Let's create a simple table. The HTML for the table is very straight forward (no Javascript, pure HTML, we haven't added `thead` or `tbody` elements, but it works fine with these too): ```html
| 1 | One | some text |
| 2 | Two | some text |
| 3 | Three | some text |
| 4 | Four | some text |
| 5 | Five | some text |
| 6 | Six | some text |