I'm using Draggable to create scrollable element with several divs inside it. For example   <div id="draggable">      <div>example</div>      <div>example</div>      <div>example</div> </div>   I want to apply some mousedown jquery code to the divs. for example:   $("#draggable div").on("mousedown", function() {      //do something... });   The Draggable seems to overwrite and/or steal jQuery's mousedown event.