Frameset größe ändern?

stip00n

Grünschnabel
Hallo Allerseits!

Ich habe eine Website mit 2 Frames:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html><head><title>flash chat</title></head><frameset rows="30,100%" frameborder="0" framespacing="0" border="0">
<frame src="http://*******/oben.htm" name="Top" frameborder="0" noresize="noresize" scrolling="no">
<frame src="http://*******/a.htm" name="Inhalt" frameborder="0">
  <noframes>
    <body></body>
  </noframes>
</frameset>
</html>

Ich will, dass der obere Frame bei einem Mouseover automatisch vergrößert wird.

Kann mir bitte jemand helfen
 
Hier ein Beispiel, was bei mir funktioniert:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html><head><title>flash chat</title>

<script>
function gross() {
	document.getElementById("frameset1").rows = "50,100%";
}
function klein() {
	document.getElementById("frameset1").rows = "30,100%";
}
</script>

</head><frameset rows="30,100%" frameborder="0" framespacing="0" border="0" id="frameset1">
<frame src="oben.htm" name="Top" frameborder="0" noresize="noresize" scrolling="no" onmouseover="gross()" onmouseout="klein()">
<frame src="a.htm" name="Inhalt" frameborder="0">
  <noframes>
    <body></body>
  </noframes>
</frameset>
</html>
Hoffe, ich konnte dir helfen.

Schönen Tag noch
Master of Chess
 

Neue Beiträge

Zurück