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; | |
}); |
Glad to hear that :)
$("#projects").click(function (e) {
event.preventDefault();
$(".container-content").animate({ scrollTop: $(".content-projects").offset().top }, 1500);
});
Gives me this error
Uncaught TypeError: Cannot read property 'top' of undefined
I have the .content-projects div inside the .container-content.
// Fixed problem
I made a small typo in my HTML doh.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, tried heaps of stuff and this is was the quickest and best solution!