I would like to scroll the page using a jQuery animation but the scrolling is disabled in the CSS and it doesn't allow the animation to take place:
$('html, body').css({
'overflow': 'hidden',
'height': '100%'
});
$('html, body').animate({
scrollTop: 939
}, 2500);
Here's the fiddle: http://jsfiddle.net/AKPHB/1/