Jquery Mobile Static Footer Without Toggle
I have a page with a fixed footer
Title
Solution 1:
As @commadelimited says, the toggle has been a new feature not available in prior versions.
The meta data to add to your header or footer to remove that toggle feature is:
data-tap-toggle="false"
so, in your case, the footer should looks like:
<divdata-role="footer"data-id="footer_nav"data-position="fixed"data-tap-toggle="false"><ahref="#business_hours"><imgsrc="images/icon.png" /></a></div>
And here should be some kind of reference from their site: link to google search
Post a Comment for "Jquery Mobile Static Footer Without Toggle"