Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
jquerymobile.com/demos/1.1.1/docs/toolbars/…. From the docs: $("[data-position='fixed']").fixedtoolbar('hide');. – Jasper Sep 11 '12 at 18:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.