Ive used the following javascript to hide the browser chrome for mobiles by scrolling down the page just enough that its out of view. It works fine for iPhone but does nothing on the first android ive tested with.
$(document).ready(function () {
window.scrollTo(0, 0);
}
Maybe you need to put more than 0 scroll. I think this will work.