Created
November 13, 2013 17:29
-
-
Save framon/7452983 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.target').on('dragover', function(event){ | |
event.preventDefault(); | |
}); | |
$('.target').on('drop', function(event){ | |
var id = event.originalEvent.dataTransfer.getData('id'); | |
}); | |
$('.souce').on('dragstart', function(event){ | |
var id = $(this).attr('id'); | |
event.originalEvent.dataTransfer.setData('id', id); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment