I am using JQuery Mobile version 4.1a and using:
data-position="fixed"
on both header and footer.
When I scroll the content it disappears and then appears again.
Is there any way to make it stay in it's position and not disappear everytime I scroll the page?
Thanks
Add data-tap-toggle="false"
to the element
or
Add this to Javascript
$("[data-role=header]").toolbar({ tapToggle: false });
Older versions of jQuery use .fixedtoolbar()
.