vote up 0 vote down star

Is it possible to position an element fixed relative to the viewport in MobileSafari? As many have noted, position: fixed doesn't work, but Gmail just came out with a solution that almost is what I want – see the floating menu bar on the message view.

Getting real-time scroll events in JavaScript would also be a reasonable solution.

flag

2 Answers

vote up 0 vote down

I found this just now: http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/

(This question was also in the Google search results.)

(Sorry for the necrobump.)

link|flag
vote up 0 vote down

I think gmail just tracks the scroll position on a timer and repositions a div accordingly.

The best solution I've seen is at doctyper.

A simpler jQuery solution that moves an element onscroll: link

link|flag
How do you get the scroll position, then? – Ben Alpert Apr 13 at 6:14
I've added the simpler method that tracks onscroll. Feel free to dig through jQuery to find the exact method to use; it might be window.pageYOffset but I'm not certain – rpetrich Apr 17 at 21:15

Your Answer

Get an OpenID
or

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