sortable/draggable handle element

sortable/draggable handle element


I've been trying to get this to work for my handle option in the
jQuery UI sortable functionality:
$('#foo').sortable({ ...
handle: ".bar:first-child"
...
});
When I do just handle: ".bar" this works for the .bar element; however
I want the first child of the .bar element...so what's going on?