JQuery Mobile Fixed Toolbar and Footer Bar disappears?

jquery-mobile

Solution

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

Problem

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

Original source