how to apply jquery ui draggable more than one time to same element

Posted by Nuwan Chathuranga on Stack Overflow See other posts from Stack Overflow or by Nuwan Chathuranga
Published on 2012-06-19T12:04:51Z Indexed on 2012/06/20 3:16 UTC
Read the original article Hit count: 263

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui