Is it possible to enable dragging when the mouse is clicked on the children of a div and have it drag the parent?
In this example I am trying to get the draggable to work for both the div and the select. When you click on the select and try to drag nothing happens.
<div id="draggable" class="ui-widget-content">
<select>
<option>Drag Me</option>
</select>
</div>
$(function() {
$( "#draggable" ).draggable();
});