If I use the jQuery animation function to slide a #wrapper div (z-index:2) to the right and reveal a #menu div behind it (z-index:1), the #wrapper div reset's the scrolling the user has made on it.
Here's the jsFiddle showing the problem. If you scroll on the #wrapper div (the one with the "Main #") and then you click on the "Open/Close Menu" link to activate the animation, the scrolling resets. I know this is caused by the position:fixed, but that is necessary so that when the menu is opened, the only div that scrolls is the #menu's div and not the #wrapper's div.
I've tried using href="javascript:void(0)" on the button that activates the animation and return false; on the click function. Nothing works.
How can I disable the #wrapper div from resetting the scroll? or How can I lock the #wrapper div scrolling once the #menu div is showing?