Yeah... I can't get it to work.
Here is what I'm trying to do.
I am using the scroll bar function form here:
http://www.solutoire.com/experiments/scrollbar/index.html
The code works perfectly but when I resize the window I am using
onresize to resize all the scroll bars. So I need to kill the scroll
bar function and reinitiate it to get the new dimensions.
Here is how I was doing it:
$('fullHandle').removeEvents();
$('fullScrollBar').removeEvents();
window.mousewheel.removeEvents();
makeScrollbar( $('fullListingInside'), $('fullScrollBar'), $
('fullHandle') );
So I am just removing the events from the scroll function and then
calling the function again so it gets all the new dimensions.
Everything works great but the scroll bar part.
Any help is appreciated.