[jQuery] Sortable Problem

[jQuery] Sortable Problem


The problem with sortable is that if i bind a list element with it, no
click event fires for that element or any of its sub-elements. Given
below is the source code. if i comment the sortable line the click
event will work fine. Any solution for this problem champs?
<ul id="testUL">
<li>
A
<ul>
<li>A.1</li>
<li>A.2</li>
<li>A.3</li>
</ul>
</li>
<li>B</li>
<li>C</li>
</ul>
$("#testUL").sortable({});
$("#testUL").click(function() { console.log("test has been
clicked"); } );