Using the JQM v 1.0.x method to disable a fixed toolbar. There are several ways to disable this functionality.
The easiest way is to simply add data-tap-toggle = "false" to the toolbar. But if you don't want to copy and paste a bunch of times into your project, try these other methods.
$('[data-position=fixed]').fixedtoolbar({ tapToggle:false});
You can also configure it so that some elements ignore this behavior.
$('[data-position=fixed]').fixedtoolbar({ tapToggleBlacklist: "a, input, select, textarea, .ui-header-fixed, .ui-footer-fixed" })
Refresh Added more information for a more complete answer.
source share