As the title says, I want to drag the parent div, let's say I have this structure
<div class="parent"> <divc class="draggable"></div> </div> $(".draggable").draggable();
So how can I drag .parent instead of .draggable .
And no, I donβt want to do .parent draggable instead of .draggable , since it will be a window that will be dragged in only one place.
jquery jquery-ui
Linas
source share