I've taken an example from Andrew Valums' website of a scrollable div using the mouse move event in jQuery. I've modified it to my needs as the following code will show:
function makeScrollable(wrapper, scrollable) {
var wrapper = $(wrapper), scrollable = $(scrollable);
wrapper.css({ overflow: 'hidden' });
var inactiveMargin = 99;
var wrapperWidth = wrapper.width();
var wrapperHeight = wrapper.height();
var scrollableHeight = scrollable.outerHeight() + 2 * inactiveMargin;
wrapper.mousemove(function(e) {
var wrapperOffset = wrapper.offset();
var top = (e.pageY - wrapperOffset.top) * (scrollableHeight - wrapperHeight) / wrapperHeight - inactiveMargin;
if (top < 0) top = 0;
wrapper.scrollTop(top);
});
}
The problem I've got with it is that when I have an element that doesn't need to scroll and then I resize the browser window smaller so it does need to scroll I get a jittery effect in IE7.
I'm using the following:
$(document).ready(function() {
makeScrollable("div.sc_menu_wrapper", "div.sc_menu");
$(window).resize(function() {
makeScrollable("div.sc_menu_wrapper", "div.sc_menu");
});
});
It works fine as long as the page loads with a set window size, the minute I change it, I get problems only in IE7. The problem is that the system I develop is purely in IE7 (Intranet site for a large number of people). I've reinitialised it on the window resize event to see if that would fix it because otherwise it doesn't understand the new sizes.
Any ideas where I'm going wrong?
