example: http://jsbin.com/ofifiy/2/edit#preview
I am trying to scroll a div (red) using a scrollable div (green). My problem is that when I look through the green div, jquery scroll() does not fire.
HTML
<div id="targetWithNoScroll" style="border:1px solid #0f0; width:100px; height:100px;"> scroll here = scroll the red div<br /> </div>
Js
$('#targetWithNoScroll').scroll(function() { $('body').append('No scroll <br />'); });
source share