I have an HTML document with images in a grid format using . The browser window has both vertical & horizontal scrolling.
. The browser window has both vertical & horizontal scrolling.
Simplest solution I have seen
var offset = $("#target-element").offset(); $('html, body').animate({ scrollTop: offset.top, scrollLeft: offset.left }, 1000);
Tutorial Here