JQuery Mobile Fixed Toolbar and Footer Bar disappears?

Satch3000 picture Satch3000 · Apr 23, 2011 · Viewed 50k times · Source

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

Answer

tarkeshwar picture tarkeshwar · Mar 23, 2012

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().

jQuery Mobile Docs - Events