Is there a way to disable the fade in / fade out effect on tap with fixed toolbar ? http://jquerymobile.com/demos/1.0.1/docs/toolbars/footer-persist-a.html
Essential
If you want to disable the tap to toggle a fixed footer for version Jquery Mobile 1.0 you can use something like this:
$(function(){
$.mobile.fixedToolbars.setTouchToggleEnabled(false);
});
Jquery Mobile 1.1 changes the way you set the tap toggle feature to something like this:
$(function(){
$('[data-role=header],[data-role=footer]').fixedtoolbar({ tapToggle:false });
});
or in JQM 1.1 you can simply set data-tap-toggle="false":
<div data-role="header" data-position="fixed" data-tap-toggle="false">