Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Internet Explorer 9 Drag and Drop (DnD)

Does anyone know why the following web site drag and drop examples (plus many other tutorials online) don't work in Internet Explorer 9? Chrome, FireFox and Safari are all OK.

http://www.html5rocks.com/tutorials/dnd/basics/

I thought IE9 was suppose to be the most HTML5 compliant browser? Especially with DnD since they have been supporting it since IE5. Do I have to change a setting somewhere?

The more I play with HTML5 and CSS3...the more IE9 lacks.

Does anyone have any links to DnD tutorials that work in IE9?

like image 353
SteveJ Avatar asked Mar 31 '11 13:03

SteveJ


People also ask

Does Internet Explorer support drag and drop?

Drag and drop is supported in Internet Explorer 10 (desktop mode).


1 Answers

I've found a workarround to make the native dnd api also work in IE with elements other than links and images. Add a onmousemove handler to the draggable container and call the native IE function element.dragDrop(), when the button is pressed:

function handleDragMouseMove(e) {     var target = e.target;     if (window.event.button === 1) {         target.dragDrop();     } }  var container = document.getElementById('widget'); if (container.dragDrop) {     $(container).bind('mousemove', handleDragMouseMove); }  // todo: add dragstart, dragover,... event handlers 
like image 54
Lea Rosema Avatar answered Sep 27 '22 23:09

Lea Rosema