Ich habe es jetzt erstmal nur auf Firefox 29.0.1 ausprobiert.
frameset.html:
<!DOCTYPE html>
<frameset rows="50%,50%">
<frame name="a" src="a.html">
<frame name="b" src="b.html">
</frameset>
a.html:
<!DOCTYPE html>
<h1>a.html</h1>
b.html
<!DOCTYPE html>
<h1>b.html</h1>
<button onclick="console.log(parent.frames.a)">parent.frames.a</button>
<button onclick="parent.frames.a.location.href = 'b.html'">location.href</button>
Funktioniert tadellos im Firefox 30.
Woran könnte es liegen, dass mir der Firefox keinen Quelltext der Frames mehr anzeigt?
Kontextmenu > This Frame > View Frame Source
funktioniert bei mir.
Mathias