This can be done using javascript. Suppose you click on a link, not a binding anchor, try the following:
document.getElementById('id_of_link').scrollIntoView(true);
Edit: how about window.parent.scroll (x, y), where x, y are the positions of the elements obtained using this method:
function getOffset( el ) { var _x = 0; var _y = 0; while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) { _x += el.offsetLeft - el.scrollLeft; _y += el.offsetTop - el.scrollTop; el = el.offsetParent; } return { top: _y, left: _x }; } var x = getOffset( document.getElementById('yourElId') ).left;
From: Get the position (X, Y) of an HTML element
source share