Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created February 12, 2015 13:54
Show Gist options
  • Save tacensi/5a59e0b16e41c019f45f to your computer and use it in GitHub Desktop.
Save tacensi/5a59e0b16e41c019f45f to your computer and use it in GitHub Desktop.
JQuery Scroll Top Animated
try{
$('.backtop').click( function(e){
e.preventDefault();
$('html,body').animate({
scrollTop: '0px'
}, 800 );
})
} catch(e){
console.log(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment