draggable out the parent element
        Posted  
        
            by Luca Romagnoli
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Luca Romagnoli
        
        
        
        Published on 2010-01-09T16:31:05Z
        Indexed on 
            2010/06/13
            8:02 UTC
        
        
        Read the original article
        Hit count: 239
        
Hi i have 2 div
<div style="width:50px;height:100px;overflow:auto" id="outer">
   <div class="kind_div">hello</div>
</div>
i tried the draggable function of jquery ui: $("div.kind_div").draggable({ cursor: 'crosshair', containment: 'document', appendTo: 'body' });
i can drag the kind_div but it remains into the outer div
I want drag it in all body of my page
how can i do?
thanks
© Stack Overflow or respective owner