Skip to content

Start

Install

sh
$ npm i sortable-dnd
sh
$ yarn add sortable-dnd

Usage

HTML

html
<ul id="group">
  <li>1</li>
  <li>2</li>
  <li>3</li>
  <li>4</li>
  <li>5</li>
</ul>

JavaScript

js
import Sortable from 'sortable-dnd';

let sortable = new Sortable(document.getElementById('group'));

Released under the MIT License.