Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chernysh2909/1753d4a01b9350c860acb5d768c2e14e to your computer and use it in GitHub Desktop.
Save chernysh2909/1753d4a01b9350c860acb5d768c2e14e to your computer and use it in GitHub Desktop.
$(window).scroll(function(){
if($(window).scrollTop()>300){
$('#elem').show()
}
})
#elem{
display:none;
position:fixed;
right:30px;
bottom:30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment