I am using new fixed headers available in jQM 1.1-rc1
The page looks like this:
<div data-theme="a" data-role="page" data-title="Home" id="home_page" > <div data-role="header" data-theme="b" data-position="fixed" data-tap-toggle="false"> <h1>Home</h1> </div> <div data-role="content" id="categories_content"> <ul data-role="listview" data-theme="a" id="categories_list"> <li>something</li> <li>something else</li> </ul> </div> <div data-role="footer" data-position="fixed" data-tap-toggle="false"><h1>Home</h1></div> </div>
My problem is that the page scrolls when there is no need to scroll it. The list is short and does not fall below the footer.
Has anyone encountered this problem before, and if so, how did you overcome it?
Here is the jsfiddle showing the problem: jsFiddle
Thanks in advance.
source share