Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created February 11, 2014 18:58
Show Gist options
  • Save tanrax/8941598 to your computer and use it in GitHub Desktop.
Save tanrax/8941598 to your computer and use it in GitHub Desktop.
JQuery: Volver arriba (ir)
$('a.top').click(function(){
$('html, body').animate({scrollTop : 0},800);
return false;
});
//HTML
<a class="top" href="#">Arriba</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment