Skip to content

Instantly share code, notes, and snippets.

@Grawl
Created April 11, 2015 13: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 Grawl/3ac405585e9c88724798 to your computer and use it in GitHub Desktop.
Save Grawl/3ac405585e9c88724798 to your computer and use it in GitHub Desktop.
$(function(){
var unscrolled = 'unscrolled'
$('body').addClass(unscrolled);
$(window).scroll(function(){
if( $(window).scrollTop() > 0 ) {
$('body').removeClass(unscrolled);
} else {
$('body').addClass(unscrolled);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment