Hallo!
Also, es geht um folgendes: Ich möchte mit EINEM Klick auf ein Thema im Navigationsframe ZWEI Seiten in ZWEI VERSCHIEDENEN Frames öffnen.
Also aus einem Klick mach zwei Pages. Kann ir jemand helfen? Es eilt etwas... Danke!
MfG
Tim
hi,
natürlich gehts..
mit javascript:
<script language="javascript">
function link() {
parent.frames[0].location.href = "Datei1.htm";
parent.frames[0].location.href = "Datei2.htm";
}
</sript>
und dann: <A href:"javascript:link()">der link</A>
grüsse Christian