I'm just about done a webpage but there is one bug in Mobile Safari (iPhone and iPad iOS 5.0.1) with two buttons that are fixed to the upper and lower right corners..

The buttons are not faded in until after clicking submit on a textbox which opens up to the rest of the page... After the rest of the page is loaded and the buttons are faded in you can click on either of them and they both work...

However, clicking them causes a programmatic scroll and after that scroll is complete you can no longer click on either of the buttons until you physically scroll the page with your finger even just a tiny one pixel scroll...

What I have noticed is that after the programmatic scrolling if you tap just slightly below the TOP button you see the highlight as if you were tapping the BOTTOM button and the action of the bottom button is processed, which tells me the bug is that when scrolling programmatically the fixed position button still moves with the rest of the page and doesn't go back to it's fixed position until an actual touch scroll is performed....

Does anyone know a way around this..?

I've added a popup that shows which button was pressed so you can test it, remember after the first press of the down button (which works) trying pressing down again, it won't work, but click just below the up button and you'll see the down button actions happening....

http://www.tsdexter.com/ceos

thanks for the help.

Thomas

(also if you can point me to where I can submit a bug to Apple that'd be good too, unless one already has been)

EDIT: just click either of the submit arrows, you don't need to enter a wage/salary it has defaults

EDIT 2: Here is a simpler example to show the same issue..

http://www.tsdexter.com/MobileSafariFixedPosBug.html

EDIT 3: Bug reported to Apple

link|improve this question

70% accept rate
Is there any way to look up the problem in Apples bug-tracker (even if I have to register for that) to find out about the current status of the bug? – thomastiger Apr 24 at 8:59
feedback

6 Answers

up vote 12 down vote accepted

We also encountered this bug on 2 different iPad applications, for us the best fix was to temporarily remove the fixed position from the fixed element once the animated scroll had finished, then use window.scroll with the vertical value we’d just performed the animated scroll to, then finally re-apply the position fixed style. It does cause a very minor blip as the ipad re-renders the element but its preferable to the bug.

var $fixedElement = $('#fixedNavigation');
var topScrollTarget = 300;
$("html:not(:animated),body:not(:animated)").stop().animate({ scrollTop: topScrollTarget }, 500, "swing", function(evt) {
    $fixedElement.css({ "position": "relative" });
    window.scroll(0, topScrollTarget );
    $fixedElement.css({ "position": "fixed" });
});
link|improve this answer
Thanks for the comment. I no longer need this functionality. If I have some time though, I will test it on the page I needed it for and see if it works there as well. Thanks again! – tsdexter Mar 22 at 17:41
Thanks for the solution! The blip is quite noticeable in my app but it does the trick. – Joel Arnold Apr 2 at 15:37
This solution works for me too. If you're using jquery mobile, your position is defined in classes so replace "position": "fixed" with "position": "" so that it's not permanently fixed. – Lee Crossley Apr 15 at 9:26
feedback

I got around it by adding a 101% high div then (almost) immediately removing it.

Try:

<style>
.iosfix {
  height: 101%;
  overflow: hidden;
}
</style>

and when you scroll:

window.scrollTo(0, _NEW_SCROLLTOP_);
$('body').append($('<div></div>').addClass('iosfix'));
setTimeout(function() {
  $('.iosfix').remove();
}, 500);

It also works with jQuery.scrollTo.

See an example here.

link|improve this answer
Chad this is fantastic! A great workaround. – wiseguydigital May 3 at 21:54
This works great, thanks! – Erich Menge May 15 at 14:21
does this have the same flicker effect the accepted answer? – chris May 15 at 19:06
confirming that is does have a slight flicker. Seems less noticeable than the accepted answer. – chris May 15 at 19:12
feedback

I discovered the exact behavior you describe in an iPhone app I'm writing. I load a bunch of HTML text with an index on the right side. After selecting an item from the menu and scrolling the text, the menu would then become unresponsive (because the landing zone had scrolled out from under it). I also saw that even a tiny scroll of the text would reenable the index menu.

I created a test case and uploaded the file here (If you view this on a non-iPhone browser, make the window small vertically to see the correct behavior):

http://www.misterpeachy.com/index_test.html

I figured out that the index menu was scrolling with the text (even though the visible menu didn't move) after I tapped B and then tapped B again. Instead of scrolling to B (basically not moving), it scrolled to D.

Right now I'm stuck. I'm hoping that I can add some JavaScript code (I've never programmed in JavaScript, so that is a slight problem) that will scroll the text one pixel after I lift my finger off a menu item (and after the text has scrolled to the selected place, of course). Maybe JavaScript can detect the scroll and then add another scroll to that.

link|improve this answer
I reported this as a bug to Apple and they replied that they already knew about it. Presumably that means that a fix will appear in a later version of iOS. – Cliff Harris Mar 1 at 8:16
Sorry about the delay on this. Adding JavaScript to scroll the page won't work. A JavaScript scroll does not cause the position to rerender properly, only an actual physical scroll will. I've even tried to program a touch event that simulated a finger scroll and it still wouldn't work. Unfortunately I think we have to wait for Apple on this one. Although Dominic Warren above seems to have a workaround (I haven't tried since I no longer need it) – tsdexter Mar 22 at 17:39
feedback


After spending a couple of hours on this, I found a workaround: try scrolling (maybe with an animation) and then scrolling again to the same point (without animation).
This way you force the browser to delete the wrong rendering from the view.

Example:

$('body, html')
    .animate({scrollTop: 0})
    .scrollTop(0);
link|improve this answer
Do you have an example of this working? I cannot get it to work on either the actual site I'm building or this bug report page I made. Please see the page, I've added your fix and still nothing. (maybe your fix is working because you're scrolling to 0 - so you're not actually scrolling at all?) tsdexter.com/MobileSafariFixedPosBug.html – tsdexter Jan 12 at 20:35
the fixed is added at line 34 of the source. – tsdexter Jan 12 at 20:36
Yeah this seems to fix the rendering of the page we had but not the buttons triggers which remain in the old position. I found that if you do: $('body, html') .animate({scrollTop: 0}, function(){ $element.css('display', 'none'); setTimeout(function() { $element.css('display', 'block'); }, 0); }); You can see where the $element actually is.. – sazemaster Jan 16 at 14:59
feedback

I was having the same problem with iOS5 and JQueryMobile. Fixed Header & Footer. Expandable content and suddenly i had a ghost footer that you could see but not touch. I had a bit of a problem getting a straight change position to absolute then back to work. It seemed to only work some of the time. I ended up using this.

        $(myFixedFooter).css("position", "relative").hide(0, function () {
            $(this).show(0).css("position", "");
        });

This defiantly creates a "blip" as the footer does its thing. Hoever i found that some 98% of the time the footer stayed at the bottom of the page. All the other work arounds and tweaks i found and tried didn't always leave the footer at the bottom or they didn't solve the problem in the first place.

Hopefully Apple will fix soon.

link|improve this answer
feedback

A variation of this worked for me as well. Trying to not use frameworks where I can on mobile.

    var d = document.createElement("div");
    d.style.height = "101%";
    d.style.overflow = "hidden";
    document.body.appendChild(d);
    window.scrollTo(0,scrollToM);
    setTimeout(function() {
    d.parentNode.removeChild(d);
    }, 10);
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.