sortable handle selector to select "all except" a clickable area

sortable handle selector to select "all except" a clickable area


I have a sortable panel with a header titlebar containing some text
and an img with an onclick handler.
<div class=".rich-panel-header">
Some text
<span>
<img .... onclick=..../>
</span>
</div>
In jquery-ui 1.5b4 (and the bundled jquery 1.2.4b), the following
handle selector worked fine (i.e. dragging was initiated for the
entire header panel except for the img which properly responded to my
onclick):
handle: ".rich-panel-header".
after upgrading to jquery 1.2.6 and jquery-ui 1.5.0, this handle
selector is now selecting the entire div, including the img -- making
the onclick never happen (instead of calling my onclick handler,
clicking on the img initiates the jquery sortables drag).
I've tried a variety of alternate selectors, but can't find one that
works. Ideas?
Thanks!