Looking at this JSFiddle example, there is a box that can be dragged around the body. But, is it feasible to restrict dragging only when the user clicks on the purple section identified by the id "head"?
$(document).ready(function(){
$( "#box" ).draggable({containment: "#container"});
});