Skip to content

Instantly share code, notes, and snippets.

@jakubzitny
Last active July 5, 2017 12:39
Show Gist options
  • Save jakubzitny/f2d87746e3683a71394ef776d5f7ef7c to your computer and use it in GitHub Desktop.
Save jakubzitny/f2d87746e3683a71394ef776d5f7ef7c to your computer and use it in GitHub Desktop.
$(".dragObject").draggable({
helper:'clone',
cursor:'move',
tolerant:'fit',
});
$('#containerDrop').droppable({
accept:'.dragObject',
drop: function(ev, ui) {
$(ui.draggable).clone(true).appendTo(this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment