Skip to content

Instantly share code, notes, and snippets.

@malachi358
Created November 15, 2013 03:15
Show Gist options
  • Save malachi358/7478540 to your computer and use it in GitHub Desktop.
Save malachi358/7478540 to your computer and use it in GitHub Desktop.
Jquery Switch class on Scroll!
$(function() {
var header = $(".clearHeader");
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 500) {
header.removeClass('clearHeader').addClass("darkHeader");
} else {
header.removeClass("darkHeader").addClass('clearHeader');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment