От: | der Igel | ||
Дата: | 08.01.04 13:22 | ||
Оценка: | 15 (1) |
function scrollIntoView(el)
{
var coords = {x: 0, y: 0};
do
{
coords.x += el.offsetLeft;
coords.y += el.offsetTop;
}
while ((el = el.offsetParent));
window.scrollTo (coords.x, coords.y);
}