Created
October 4, 2017 02:13
-
-
Save rodrigobertin/fce34838f2fcbd1e2b53ae54b36ed25d to your computer and use it in GitHub Desktop.
Fix Header
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).scroll(function(){ | |
if ($(window).scrollTop() >= 300) { | |
$('nav').addClass('fixed-header'); | |
} | |
else { | |
$('nav').removeClass('fixed-header'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment