Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created April 22, 2017 19:49
Show Gist options
  • Save ozknozsrt/a37fa1c2c3ceb723c3adb2f59497ee45 to your computer and use it in GitHub Desktop.
Save ozknozsrt/a37fa1c2c3ceb723c3adb2f59497ee45 to your computer and use it in GitHub Desktop.
Stickymenu addClass - removeClass
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 500) {
$(".clearHeader").addClass("darkHeader");
} else {
$(".clearHeader").removeClass("darkHeader");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment