Created
April 16, 2015 13:30
-
-
Save bgadrian/1192858ac875c3a318fb to your computer and use it in GitHub Desktop.
Floating div, when scroll down
This file contains hidden or 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
$(window).scroll(function () { | |
//TODO put a throttle here | |
if($(this).scrollTop() > $j('#anchor').offset().top) | |
{ | |
$element.css({ | |
position: 'fixed', | |
top: 0 | |
}) | |
} else { | |
$element.css({ | |
position: 'static' | |
}) | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment