Reputation: 865
If you press the "Profile" button in the top right, it will scroll to the bottom of the page in Chrome but not in FF or IE. I'm not sure why not. Is it because JS is being blocked?
$("#profile").click(function() {
$('body').animate({
scrollTop: $(".anchor-point").offset().top
}, 2000);
});
Upvotes: 0
Views: 54
Reputation: 747
You need to use $('html, body') instead of $('body') :
$("#profile").click(function() {
$('html, body').animate({
scrollTop: $(".anchor-point").offset().top
}, 2000);
});
Upvotes: 1