5 Einträge, 1 Seite |
<body onScroll='parent.scrollen()'></body>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function scrollen()
{
if (right.pageYOffset) // all except Explorer
{
y = right.pageYOffset;
}
else if (right.document.documentElement && document.documentElement.scrollTop)
// Explorer 6 Strict
{
y = right.document.documentElement.scrollTop;
}
else if (right.document.body) // all other Explorers
{
y = right.document.body.scrollTop;
}
left.scrollTo(0, y);
}
QuoteDas geht in den meisten Browsern, auch Firefox u. IE, Opera.
Allerdings wohl nich in Mozilla,
5 Einträge, 1 Seite |