Can someone tell me how best to implement Jquery draggable and droppable so that the dragged element is MOVED to its new position?
Do you need to implement your own helper functions for this, or is it included in the Jquery plugin?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the
helperoption is by default'original'which will do exactly what you want, so just leave the option off, or set it to'original'and you’ll grab the original…as opposed to'clone'which makes a copy. It should look like this:You can test it in the default demo here.