Skip to content

Instantly share code, notes, and snippets.

@jojo89
Created October 14, 2013 22:02
Show Gist options
  • Select an option

  • Save jojo89/6982963 to your computer and use it in GitHub Desktop.

Select an option

Save jojo89/6982963 to your computer and use it in GitHub Desktop.
$(".item").draggable({
helper: "clone",
});
$("#grocery_list").droppable({
drop: function(event, the_new_item){
$(this).append(the_new_item.draggable.clone())
$(the_new_item).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment