Last active
September 22, 2016 07:43
-
-
Save ckahle33/6e8dfb9765f06b99b77ad2dad92e585d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on('scroll', function(e){ | |
console.log($(this).scrollTop()); | |
if ($(this).scrollTop() > $(".reddit-infobar").offset().top) { | |
//toggle a class instead here | |
$(".reddit-infobar").css('position', 'fixed') | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment