Using Selectable. Quick question.

Using Selectable. Quick question.


Hey guys, beginner to jQuery but I'm loving it so far. So I'm using
the selectable interaction and I want to make the div dragable/
sortable only when clicking and holding on a certain part of the it.
What would be the best way of doing this? To give you an idea, here
is what I've attempted so far. My noclick.unbind does not work and
I'm not sure how to accomplish my task.
<head>
<script type="text/javascript">
    $(function() {
        $("#sortable").sortable();
        $("#sortable").disableSelection();
        $("#noclick").unbind("click");
    });
    </script>
</head>
<body>
<ul id="sortable">
    <div id="bigdiv">
<div id="noclick">Unclickable part</div>
<div id="dragpart">Part that responds to mouse</div>
</div>
    <div id="bigdiv">
<div id="noclick">Unclickable part</div>
<div id="dragpart">Part that responds to mouse</div>
</div>
    <div id="bigdiv">
<div id="noclick">Unclickable part</div>
<div id="dragpart">Part that responds to mouse</div>
</div>
</ul>
Thanks a ton
Eric