Jquery-ui draggable()

Jquery-ui draggable()


Hello all!
I'm trying ( hard ) to figure out how to:
- drag a layer via draggable()
- without firing the click() event on endDrag/release.
I've tried the
Anybody for a workaround?
detail:
$(function (){
$("#dragdiv").draggable();
$("#dragdiv li").click(alert);
})
/////
<div id="dragdiv">
<ul>
<li>clickme!</li>
<li>clickme!</li>
<li>clickme!</li>
<li>clickme!</li>
<li>clickme!</li>
... a lot of LIs
<ul>
</div>
thank you nice people!