Internet Explorer 9 Drag and Drop (DnD)

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(); } … Read more

ie9 border radius

As far as I know border radius should work on IE9. You might be missing this in your page header: <meta http-equiv=”X-UA-Compatible” content=”IE=edge” /> “edge” means “use the latest rendering engine” so IE 9 will use 9, 10 uses 10, etc.