I've wasted the past few hours, trying to get
draggable to work with JQuery 1.8.3 and JQuery UI 1.9.2.
My
div control simply wasn't clickable or draggable in (just) IE9 or IE10.
I even tried setting the div's css "-ms-touch-action" to "none" (as recommended elsewhere), but it made no difference.
In the end, the solution was ridiculous.
I needed to add a white background to my div... and then...make the background colour invisible.
.cssMike
{
position: absolute;
width: 65px;
height: 45px;
background-color:#FFFFFF; opacity:0;
}
With this line added to my .css, the JQuery UI "draggable()" function started working again, and my div finally became draggable and clickable in IE9 and IE10.
"Developers ! Developers ! Developers !"
Uh-huh....