Easy (more or less):
1) Browser sniffing to generate a blacklist.
2) Position:fixed for supporting browsers
3) Position:static for the rest
Inside JQM look for this section:
$.widget( "mobile.fixedtoolbar", $.mobile.widget, {...}
As a lot of mobile browsers do not supported pos:fix as of now, you will end up with static toolbars sitting at the bottom of your content in a lot of browsers!!!
There also is a polyfill to get back the previous behavior (hide-reposition-show).
I'm just using a part of this polyfill to reposition elements before showing them like so:
el.jqmData("fixed") == "top" ? el.css( "top", $( window ).scrollTop() + "px" ) :
el.css( "bottom", wrap.outerHeight() - $( window ).scrollTop() - $.mobile.getScreenHeight() + "px" );
This works nicely, if your toolbars/elements do not have to be visible, because it calculates from a set position (scroll-stop-recalcualte) vs the original fixed toolbars (pre JQM 1.1) recalcualting during scroll (scroll-calculate-scroll-calculate), which is just too much of a strain on device hardware and caused the toolbars to stick or jump.
position:fixedto the supporting devices and just polyfilled everything else, but don't quote me on that. Was playing around with that new feature earlier and thats all it seemed to be. link to polyfill for devices that don't support position:fixed – Andres Ilich Jun 15 '12 at 11:57jquery.mobile.cssandjquery.mobile.js. I would like to go without. – Paul- Siteway Jun 16 '12 at 10:49