I have jquery modal window which is draggable. There is table inside window which has overflow-y set to true. When I scroll the table the window is getting dragged - how do I prevent drag on scroll operation. This is sample code.
<div id="container">
<table style="overflow-y:auto;"> </table>
</div>
$('#container').draggable();
On scroll event on table how do I prevent drag on window? Can someone please help.