Skip to content
This repository was archived by the owner on Jan 13, 2020. It is now read-only.

Adicionando no evento change o elemento que foi alterado durante o dr… #208

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ Then activate with jQuery like so:

The `change` event is fired when items are reordered.

$('.dd').on('change', function() {
/* on change event */
$('.dd').on('change', function(e, elemDragged) {
//e: event
//elemDragged: elemento que foi movimentado
});

### Methods
Expand Down
Loading