Skip to content

Instantly share code, notes, and snippets.

@ikamal7
Created May 4, 2017 05:10
Show Gist options
  • Save ikamal7/2f713ff1d63f75ec2f70fc6dd9fa0eb9 to your computer and use it in GitHub Desktop.
Save ikamal7/2f713ff1d63f75ec2f70fc6dd9fa0eb9 to your computer and use it in GitHub Desktop.
/*
* ----------------------------------------------------------------------------------------
* STICKY JS
* ----------------------------------------------------------------------------------------
*/
$(window).on('scroll',function() {
var scroll = $(window).scrollTop();
if (scroll < 30) {
$(".header-area").removeClass("scroll-header");
}else{
$(".header-area").addClass("scroll-header");
}
});
@trustcoder1
Copy link

Nice codding,
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment