fixed positioning in MobileSafari - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:15:13Z http://stackoverflow.com/feeds/question/743123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/743123/fixed-positioning-in-mobilesafari 0 fixed positioning in MobileSafari Ben Alpert 2009-04-13T05:42:38Z 2009-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 &ndash; 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#743142 0 Answer by rpetrich for fixed positioning in MobileSafari rpetrich 2009-04-13T05:57:27Z 2009-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#1028786 0 Answer by Wevah for fixed positioning in MobileSafari Wevah 2009-06-22T18:43:41Z 2009-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>