I have to build an app and the drag and drop functionality seems to be the most onerous part. What is the best Ajax framework for Drag and Drop according to one or more of the following parameters:
- Learning curve
- Code size
- Browser compatibility
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.
My pick would be jQuery UI.
The learning curve is short. A newbie to javascript frameworks myself, I found it to be very easy to learn. Get your head around selectors and you’re sorted. The current version of jQuery UI has specific functionality for dragging and dropping.
jQuery UI lets you customize your package so you only include the components you’re using (as well as the core). Of course it’s minimized so the total size for what you want could be as low as the 135kb mark.
You probably won’t find much difference between frameworks here. According to the jQuery website, it’s been tested for ‘compatibility in IE 6.0+, FF 2+, Safari 3.1+, Opera 9.0+, and Google Chrome.’
Good luck!