Using jQueryMobile, I've included data-role="footer" data-position="fixed" in the markup, but two bugs persist:

  • Footer toggles on a null click event.
  • Footer isn't fixed, and hides some of the page content.

I'm testing with iPhone 3g. Any ideas?

Thanks in advance.

UPDATE: It seems that the click event modifies the current page's footer, and changes ui-fixed-overlay to ui-fixed-inline, which of course is styled display:none to prevent the other pages' footers from appearing.

How can I prevent this modification?

link|improve this question

78% accept rate
Some progress made: Found the symptom. Any ideas regarding a cure? – konzepz Dec 7 '10 at 13:36
Hi, did you ever find a solution for the footer redraw issue? I am trying to fix the same issue in the jQuery Mobile rc1 release. – kg. Oct 17 '11 at 17:45
feedback

6 Answers

up vote 3 down vote accepted

doesn't anyone read the documentation?

$(document).bind("mobileinit", function(){
  $.mobile.touchOverflowEnabled = true;
});

Place this config setting before you include your jquery mobile JS... This will give you truly fixed footers.

link|improve this answer
Thanks. This was posted on May 2011; guess things have changed in the meanwhile. – konzepz Jan 25 at 11:48
Could you link to the bit of documentation that describes that? It doesn't seem to work (the bar still fades and reappears). Besides, there may be more interesting information for others coming across this SO post. – dpk Feb 27 at 2:07
Hi dpk - here it is: jquerymobile.com/test/docs/toolbars/bars-fixed.html – Roi Mar 4 at 21:51
As of today when I checked touchOverflowEnabled is no longer supported. You can see the official note using the documentation link above. – luisperezphd May 17 at 18:40
feedback

With jquery.mobile-1.0a4 adding the data-position="fixed" to the footer section is working as desired in Iphone, Android and Chrome

link|improve this answer
2  
Working as desired?... Header and footer disappear on scroll (sometimes) then catch up and fade in. There seems to be no way (other than hacking of course) to create an iScroll like, really, truly fixed footer. This is not a scheduled feature for Beta either. Consider Wink or iScroll for a truly fixed header or footer. – genkilabs Apr 13 '11 at 22:54
1  
Well, it is working as designed. It's just not a very popular design decision. See some solutions here stackoverflow.com/questions/5763619/… – Eli Jun 7 '11 at 14:25
I would like to add that having the same data-id="foo" on my footer div included fixed my issue of the footer bar changing to inline positioning on a button press event. jquerymobile.com/demos/1.0rc2/docs/toolbars/… – kg. Nov 1 '11 at 19:22
feedback

This is fixed in jQueryMobile 1.1 rc1. See http://jquerymobile.com/test/docs/toolbars/bars-fixed-options.html.

Use data-tap-toggle="false" on your footer.

link|improve this answer
feedback

We had this problem and used a combination of iScroll (v3) and a nice jquery mobile wrapper for iScroll. It works perfectly. See all the details here:

http://yappo.github.com/projects/jquery.mobile.iscroll/livedemo.html

link|improve this answer
feedback

I've had similar issue with the footer not being fixed on scroll either. My suggestion? Sencha and not jQueryMobile, its loaded with bugs and not ready for production.

The footer also highlights the selected page from URL /#page thing url affects the footer menu in my case.

link|improve this answer
Sencha looks really good, thanks. I can't remember what it was, but I've heard there're some issues with it. – konzepz Dec 7 '10 at 14:11
Anyway, rebuilding the whole thing with Sencha will take some time. If there's even a hack to solve this issue for the meanwhile, it'll be better. Thanks! – konzepz Dec 7 '10 at 14:12
1  
Have you looked at this? github.com/jquery/jquery-mobile/… its a possible fix for the footer not being fixed. its a known bug. – Alon Carmel Dec 8 '10 at 11:36
1  
This url works for above - github.com/jquery/jquery-mobile/issues/58 – Martin Jun 29 '11 at 15:02
feedback

The current "answer" may be a bit misguided. Using touchOverflow may help you in the short-term, but that will soon be going away. If anyone were to read the jQuery mobile blog, they would notice this blurb posted on Jan. 10:

Heads up: touchOverflow to be deprecated in 1.1 – When we first introduced the touchOverflow feature, we saw it as a good way to leverage the native overflow support in iOS to bring true fixed toolbars and smoother transitions, even if it was for a fairly narrow set of devices at the time. Now with the significant changes to fixed headers and transition planned for 1.1, these will improve the experience in an almost identical way as touchOverflow, except it will work on a lot more platforms and with less complexity so we’ve decided to retire this feature. It will be deprecated at 1.1 and removed at 1.2. We do have future plans for addressing overflow regions with internal scrolling so a lot of the work we’ve done on touchOverflow will be re-purposed.

Apologies for posting this as an answer, but I am unable to comment at this point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.