Created
December 23, 2014 03:45
-
-
Save steppohub/4095838eaa71fcec6244 to your computer and use it in GitHub Desktop.
jquery scrolling goodness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jquery scrolling goodness | |
jQuery(".scroll").click(function() { | |
var target = jQuery(this).attr("href"); | |
jQuery("html, body").animate({ | |
scrollTop: jQuery(target).offset().top}, 1000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment