Skip to content

Instantly share code, notes, and snippets.

@OscarGodson
Created December 30, 2010 02:03
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 OscarGodson/759363 to your computer and use it in GitHub Desktop.
Save OscarGodson/759363 to your computer and use it in GitHub Desktop.
$(window).scroll(function(e){
$fixed = $('.fixed');
if ($(this).scrollTop() > 300 && $fixed.css('position') != 'fixed'){
$fixed.css({'position': 'fixed', 'top': '0px'});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment