An open API service indexing awesome lists of open source software.

https://github.com/ded/dagron

Ender interface to HTML5 drag and drop
https://github.com/ded/dagron

Last synced: about 1 year ago
JSON representation

Ender interface to HTML5 drag and drop

Awesome Lists containing this project

README

          

## Ender interface to HTML5 Drag and Droppables

Works like this

``` js
$('div.draggables').dagron({
// all options are 'optional', no pun intended
handle: 'div.handle'
, target: 'div.droptarget'
, start: function (el) {
// el is the item you started dragging
}
, drag: function (el) {
// el is dragged element
}
, drop: function (el) {
// el is the target the dragged item was dropped on
}
, enter: function (el) {
// el is the element target you entered into
}
, leave: function (el) {
// el is the item left from
}
, end: function (el) {
// el is the element you stopped dragging
}
})
```

### Dependencies
Minimal dependency of [Enders](http://ender.no.de) [Jeesh](http://ender-js.s3.amazonaws.com/jeesh.min.js)