example: http://jsbin.com/ofifiy/2/edit#preview
i try to scroll a div (red one) with a non scrollable div (green one).
My problem is, when i scroll on the green div, the 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 />');
});