Skip to content

Instantly share code, notes, and snippets.

@nietzscheson
Created June 10, 2016 20:56
Show Gist options
  • Save nietzscheson/8e5a3c66db313071c0f0126369f3c680 to your computer and use it in GitHub Desktop.
Save nietzscheson/8e5a3c66db313071c0f0126369f3c680 to your computer and use it in GitHub Desktop.
Scroll Header Plugin
(function(){
$.fn.extend({
scrollHeader: function(){
this.each(function(){
$(window).on('scroll', function(e){
var scroll = $(window).scrollTop();
if(scroll > 150){
}
});
});
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment