Does scrollIntoView() work in all browsers? If not is there a jQuery alternative?
scrollIntoView()
jQuery
You can use jQuery alternative and animate and elements:
$('html, body').animate({ scrollTop: $("#myElem").offset().top }, 1000);