Skip to content

Instantly share code, notes, and snippets.

@Radagaisus
Created September 6, 2011 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Radagaisus/1196262 to your computer and use it in GitHub Desktop.
Save Radagaisus/1196262 to your computer and use it in GitHub Desktop.
Mobile fix for position fixed
// iPad fix for position fixed
$(window).scroll(function() {
if (navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod') {
$("footer").css({
position: 'absolute'
top: ($(document).scrollTop() + $(window).height() - $("footer").height()) + "px"
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment