[Solved] slow rendering while dragging a div [closed]

I’m using http://threedubmedia.com/ instead of JQuery Ui for the drag/drop functionality. This solution can probably be replicated for JQuery Ui. Solution: $(div).drag(“start”, function( ev, dobj) { return $( this ).clone() .css({ opacity: .75, position: ‘absolute’, zIndex: 9999, top: dobj.offsetY, left: dobj.offsetX }).appendTo( $(‘body’)); }) .drag(function( ev, dobj ){ $( dobj.proxy ).css({ “transform”: “translate(” + dobj.deltaX … Read more

[Solved] Jquery : Drag two elements in one

If I understand you correctly, yes, it is possible. You can use the custom drag(); method there. Example : $(.class).drag().drag(); as it is chainable. Take a look at this fiddle : http://jsfiddle.net/ubEqb/58/ Hope it helps. 2 solved Jquery : Drag two elements in one