Skip to content

Instantly share code, notes, and snippets.

@scottharvey
Created July 19, 2009 06:13
Show Gist options
  • Save scottharvey/149824 to your computer and use it in GitHub Desktop.
Save scottharvey/149824 to your computer and use it in GitHub Desktop.
// Fix the top of the element for IE6
function fixTop(){
element.style.top = document.documentElement.scrollTop + 'px';
}
// Call the fixTop function when the window is scrolled
if ($.browser.msie) {
$(window).scroll(function () {
fixTop();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment