Created
September 12, 2018 10:32
-
-
Save Tsunamijaan/0c9a91e2071eeb9a5100a2d05e65be1c to your computer and use it in GitHub Desktop.
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
/* TOP Menu Stick */ | |
$(window).on('scroll',function() { | |
if ($(this).scrollTop() > 1){ | |
$('#sticky-header').addClass("sticky"); | |
} | |
else{ | |
$('#sticky-header').removeClass("sticky"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment