Gotproject gave me problems when I tried to make jQueryUI.dialog () draggable with it.
I had better results with the jQueryUI TouchPunch library:
http://touchpunch.furf.com/
This allowed me to make my dialog draggable and resizable using standard jQueryUI methods, for example:
$("#divSingleNamePicker").parent().draggable().resizeable();
(NB: there is .parent (), because jqueryUI.dialog () wraps your target div with its own div.)
Correction 10/25/2012
I was mistaken in the need to add the line .draggable (). resizeable () in jQuery.Dialog (). Just loading the touch-punch library was enough to make it drag-and-drop and automatically resizable.
source share