Created
October 9, 2012 08:25
-
-
Save lorddarq/3857347 to your computer and use it in GitHub Desktop.
function to scroll to a specific element in the page
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
//replace #fromA with your button/control and #toB with the target to which you wanna scroll to. | |
$("#fromA").click(function() { | |
$("html, body").animate({ scrollTop: $("#toB").offset().top }, 1500); | |
console.log('executed scrollToElement'); | |
return true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gives me this error
I have the .content-projects div inside the .container-content.
// Fixed problem
I made a small typo in my HTML doh.