We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

conspirator on 10/02/08


Tagged

scroll textmate jquery animate CSS-Tricks


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

benrudolph
jamesming
mdrisser
sudarkoff


jQuery Animated Scroll To Top


Published in: Other 


  1. $(document).ready(function() {
  2. $('.backtotop').click(function(){
  3. $('html, body').animate({scrollTop:0}, 'slow');
  4. });
  5. });

Report this snippet 

You need to login to post a comment.