I want to create a fixed container that attaches to the top of the viewport on mobile browsers, specifically on iOS and Android devices. Gmail has an awesome fixed menu bar on their mobile site, but it only seems to function correctly when you actually view it on a mobile device (so I am not able to trace how this is being accomplished).
Does anyone know how Gmail is accomplishing this?
I'm currently attaching a function to window.onscroll that changes the position of the div, but as it is right now, it doesn't continuously update the position. Once you start scrolling, the repositioning doesn't happen until after you stop scrolling. This is what I'm trying to overcome. The repositioning function itself works correctly - it's more of a timing issue.
Any suggestions?