function makeResourceDrag(arrIndexID) { $(\'#imgA\' + arrIndexID).resizable(); $(\'#imgA\' + arrIndexID).draggable({ start: function(event, ui) {
Resizable and draggable were causing all kinds of DOM shifting problems for me. There's a bug filed for this behavior; the temporary fix is to apply the following CSS, which worked for me:
.element { position: absolute !important; }