Created
June 25, 2011 12:19
-
-
Save dara/1046422 to your computer and use it in GitHub Desktop.
Scroll To
This file contains 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
$('.linked_to_projects').click(function(){ | |
$('html, body').animate({ | |
scrollTop: $("#projects").offset().top | |
}, 750); | |
}); | |
$('#projects ul li img').click(function(){ | |
$('html, body').animate({ | |
scrollTop: $("#projects-show").offset().top | |
}, 750); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment