Skip to content

Instantly share code, notes, and snippets.

@TechRemarker
Created March 30, 2015 20:44
Show Gist options
  • Save TechRemarker/b9edc7fc0c04f5087f63 to your computer and use it in GitHub Desktop.
Save TechRemarker/b9edc7fc0c04f5087f63 to your computer and use it in GitHub Desktop.
Add Class on Scroll
jQuery(document).ready(function($) {
$(window).on('scroll touchmove', function () {
$('.main-navigation').toggleClass('past-main', $(document).scrollTop() > 0);
}).scroll();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment