HTML5 Drag and Drop, or JqueryUI Drag and Drop?

I am developing a client application. It should not be a cross browser. And also I want to use the drag and drop function.

I am familiar with JqueryUI Drag and drop, but I want to know which one is better in performance and easy programming, Html5 or JqueryUI?

thank

+3
source share
3 answers

I recently made an application that allows users to drag hundreds of items (with lots of CSS) between hundreds of lists (drag and drop zones), and I experienced terrible performance using jQuery. Then I switched to the HTML5 Drag and Drop API, and since it all works smoothly even on 1st Gen Centrinos. No wonder using native code.

API HTML5 , , , jQuery UI.

, , , jQuery UI , . , jQuery API HTML5 , , jQuery.

+6

JQuery UI , , , , HTML5 Drag and Drop API .

, : , JQuery UI, " HTML5"

-Mohit

+3

I would suggest you use JqueryUI. He is more flexible. In the future, it will be easier for you to improve it. I never used drag and drop HTML5 and did not know that it exists. So I can not compare them, but I think jQuery will be better.

-2
source

All Articles