html5-sortable
v1.0.2
Published
Lightweight HTML5 Sortable. No jQuery needed
Downloads
30
Readme
HTML5 Sortable
HTML5 Sortable. No jQuery needed. Only .5KBs gzipped!
Based on HTML5Rocks Demo
Simple API
var s = Sortable({
els: '.sortable' // Selector or array of elements
// Optional params
// Behavior of drag and drop ('insert' or 'swap')
type: 'insert'
});
// destroy
s.destroy();