Created
May 4, 2017 05:10
-
-
Save ikamal7/2f713ff1d63f75ec2f70fc6dd9fa0eb9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* | |
* ---------------------------------------------------------------------------------------- | |
* STICKY JS | |
* ---------------------------------------------------------------------------------------- | |
*/ | |
$(window).on('scroll',function() { | |
var scroll = $(window).scrollTop(); | |
if (scroll < 30) { | |
$(".header-area").removeClass("scroll-header"); | |
}else{ | |
$(".header-area").addClass("scroll-header"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice codding,
Thanks