I am trying to programmatically disable the fixed toolbar property in jQuery Mobile. I have read that I need to use this:
$.mobile.fixedToolbars.hide(true);
But I am not sure where it needs to go. I have tried it in $(document).ready()(...) and $(document).bind("mobileinit", function(){ .. }); and keep getting this error:
Uncaught TypeError: Cannot call method 'hide' of undefined
Any ideas?
$("[data-position='fixed']").fixedtoolbar('hide');. – Jasper Sep 11 '12 at 18:53