Hello, I have been struggling for the last hour because of a little problem with the Draggable component of the Interface plug-in. When I was dragging an element for the first time, everything was OK. But as I tried to drag another element, the first element was moved instead of the selected one (in fact, just clicking anywhere on the page would move the first element). I've found a workaround, so I put it here in case it would be useful for someone:
$('.thumb').Draggable({ /* your draggable config here */ onStop : function() {jquery.iDrag.dragged = null} }); Has anybody else met this behaviour?