fixed positioning in MobileSafari - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:15:13Zhttp://stackoverflow.com/feeds/question/743123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743123/fixed-positioning-in-mobilesafari0fixed positioning in MobileSafariBen Alpert2009-04-13T05:42:38Z2009-06-22T18:43:41Z
<p>Is it possible to position an element fixed relative to the viewport in MobileSafari? As many have noted, <code>position: fixed</code> 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.</p>
<p>Getting real-time scroll events in JavaScript would also be a reasonable solution.</p>
http://stackoverflow.com/questions/743123/fixed-positioning-in-mobilesafari/743142#7431420Answer by rpetrich for fixed positioning in MobileSafarirpetrich2009-04-13T05:57:27Z2009-04-17T21:14:09Z<p>I think gmail just tracks the scroll position on a timer and repositions a <code>div</code> accordingly.</p>
<p>The best solution I've seen is at <a href="http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/" rel="nofollow">doctyper</a>.</p>
<p>A simpler jQuery solution that moves an element onscroll: <a href="http://markmail.org/message/c36au6ogcpyysit5" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/743123/fixed-positioning-in-mobilesafari/1028786#10287860Answer by Wevah for fixed positioning in MobileSafariWevah2009-06-22T18:43:41Z2009-06-22T18:43:41Z<p>I found this just now: <a href="http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/" rel="nofollow">http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/</a></p>
<p>(This question was also in the Google search results.)</p>
<p>(Sorry for the necrobump.)</p>