I have a hidden div, and open it like modal popup by clicking a link. Div content is scrollable, but I can’t bind mouse wheel to scroll.
I have tried this code from jquery.mousewheel.js:
$('#previewFrame').mousewheel(function(event, delta, deltaX, deltaY) {
console.log(delta, deltaX, deltaY);
});
I found such solution:
Over the div with the contents lay another transparent div with “overflow:scroll”, which passes caught events to jScrollPane