Iframe - Scrollbalkenposition

Unique1

Grünschnabel
Hallo,
ich habe schon lange gesucht und rumprobiert trotzdem keine Lösung gefunden.
Bin mit meinem Latein am Ende.
Hoffe, dass ihr mir weiterhelfen könnt.


Nun zum Problem:

- Ich will die Scrollbalken Position des Iframes festlegen.


Ich danke für jede hilfreiche Antwort :)


MfG
Unique1
 
Hi,

mit pageYOffset bzw. scrollTop (IE) kannst du ermitteln, wie weit die Seite gescrollt wurde.
Mit scrollBy und scrollTo kannst du scrollen.

Mehr findest du hier.


Ciao
Quaese
 
Danke für deine Hilfe!

Hab mir die Quelle durchgelesen.

Mein Anwender soll ohne irgendwas zu klicken sofort auf meine festgelegte Position springen. Vllt hab ich die Quelle auch nicht ganz verstanden? Aber damit kann man das nicht machen oder?
 
Hi,
Mein Anwender soll ohne irgendwas zu klicken sofort auf meine festgelegte Position springen. Vllt hab ich die Quelle auch nicht ganz verstanden? Aber damit kann man das nicht machen oder?
selbstverständlich lässt sich das Scrollen zu einer festgelegten Position auch ohne einen Klick durch den Anwender realisieren:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>scrollTo</title>

<script type="text/javascript">
function Pos400 () {
  window.scrollTo(0, 400);
}

window.onload = function(){
Pos400();
}
</script>

</head>
<body>

    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>
    <p>dummy text</p>

</body>
</html>
 

Neue Beiträge

Zurück