Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drag and Drop polyfill?

I'm looking for a tool that will allow me to utilize native HTML5 drag-n-drop, as well as fill in support for past browsers.

Does such a thing exist? Modernizr's page (https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills) lists nothing.

like image 989
noglorp Avatar asked Nov 09 '10 20:11

noglorp


2 Answers

What older browsers do you want to support? http://caniuse.com/#feat=dragndrop Says you got support everywhere except Opera.

like image 199
Paul Irish Avatar answered Sep 20 '22 05:09

Paul Irish


Modernizr now has Drag drop shim by Tim Ruffles;

Bernardo Castilho has a polyfill that translates touch events on mobile into drag events

like image 22
Catweazle Avatar answered Sep 21 '22 05:09

Catweazle