I have been attempting to retrieve the Nexus tablet's height
by using $(window).height();
, but I am encountering difficulties because it seems to include the height of the URL bar in the result, which disappears when the user scrolls.
My webpage is divided into different sections, and each section should fill the entire screen.
The first section looks fine until I start scrolling down, causing the URL bar to disappear and the visible area to expand.
I have tried (unsuccessfully) to hide the URL bar using the methods outlined in this article, but I cannot seem to control it.
Is there a workaround for this issue?
Thank you.