Skip to content

Instantly share code, notes, and snippets.

@bgadrian
Created April 16, 2015 13:30
Show Gist options
  • Save bgadrian/1192858ac875c3a318fb to your computer and use it in GitHub Desktop.
Save bgadrian/1192858ac875c3a318fb to your computer and use it in GitHub Desktop.
Floating div, when scroll down
$(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