I am working on a webapp that uses several nested iframes.
This creates an issue where the url bar does not get hidden when scrolling down. I suspect this is because I am scrolling in one of the child iframes and not in the top level window.
Is there any good way to programatically hide and show the url bar?
I have tried the scrollTo(0,1) trick, but it only scrolls the page (quite annoyingly too) and doesn't affect the url bar.
I've also looked into fullscreen, but I don't want to use that for various reasons.