Im tring to animate the scroll to a particular ID on page load. I have done lots of research and came across this:
$(\"html, body\").animate({ scrollTop: $(\
try with following code. make elements with class name page-scroll and keep id name to href
of corresponding links
$('a.page-scroll').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: ($($anchor.attr('href')).offset().top - 50)
}, 1250, 'easeInOutExpo');
event.preventDefault();
});