Unas cuantas líneas de código para hacer un scroll animado sin ningún tipo de plugin jQuery.
Read more
$('.ID_del_boton').click(function (e) { e.preventDefault(); $('html, body').animate({ scrollTop: 0 }); });Visto en A Beautiful Site...