function makeResourceDrag(arrIndexID) {
$(\'#imgA\' + arrIndexID).resizable();
$(\'#imgA\' + arrIndexID).draggable({
start: function(event, ui) {
Make sure jquery-ui.css is referenced in your project!
Per this question: Resizable, draggable object in jquery. Possible? if you simply include jquery-ui.css it will work. It solved my problem when none of these did. My code is simple:
$(element).resizable().draggable();
This was draggable but not resizable. Nothing else worked. Adding the CSS allowed resizing with no extra divs or code.