how to apply jquery ui draggable more than one time to same element
- by Nuwan Chathuranga
How can I apply jquery ui draggable or resizable more than one time to same element? For example:
<div style="height: 50px; left: 216px; position: absolute; top: 64px; width: 444px; z-index: 1; class="test-12 ui-resizable ui-draggable" id="div-77">
<div class="ui-resizable-handle ui-resizable-e" style="z-index: 1000;"></div>
<div class="ui-resizable-handle ui-resizable-s" style="z-index: 1000;"></div>
<div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" style="z-index: 1000;"></div>
<div class="ui-rotatable-handle ui-draggable show"></div>
</div>
I want to apply jquery draggable and resizable to this div (id=div-77) with these other divs
thank you