Skip to content

Instantly share code, notes, and snippets.

@ilucin
Created October 29, 2015 00:28
Show Gist options
  • Save ilucin/690c0eda5aadcc1388c6 to your computer and use it in GitHub Desktop.
Save ilucin/690c0eda5aadcc1388c6 to your computer and use it in GitHub Desktop.
function() {
var isFixed = false;
$(window).on('scroll', function() {
if (isFixed && shouldGoToStaticCondition) {
$(el).removeClass('fixed');
isFixed = false;
}
else if (!isFixed && shouldGoToFixCondition) {
$(el).addClass('fixed');
isFixed = true;
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment