Skip to content

Instantly share code, notes, and snippets.

@TimLang
Created January 2, 2014 07:22
Show Gist options
  • Save TimLang/8215975 to your computer and use it in GitHub Desktop.
Save TimLang/8215975 to your computer and use it in GitHub Desktop.
button float top
(->
rightSideTop = $('#right-side').offset().top
$(window).scroll(->
if $(this).scrollTop() > rightSideTop
$('#right-side').css({
'position': 'fixed'
'top': 0
})
else
$('#right-side').css('position', 'static')
)
)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment