Reputation: 12455
hello
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
Upvotes: 0
Views: 1151
Reputation: 195972
have you tried setting containment to window ?
You need to change the overflow to none or hidden for it to work ..
also the 'outer' div must not be relative positioned ..
Upvotes: 1