Hej West
Jeg fik den her med posten i dag, måske er det noget som du kan bruge !?
Det er et nyhedsbrev som jeg er tilmeldt på følgende URL
http://www.zdtips.com følgende var i mailen:
Changing two frames with one click
When you create a Web site that includes frames, you can easily use a
hyperlink in one frame to change the contents of a second frame. But you
may often want to change two frames with one click.
To do so, add the following parameter to the HTML that defines the link:
onClick="parent.frame2.location.href="target2.htm"
The complete HTML for the link would then look something like this:
<a href="target1.htm" target="frame1"
onClick="parent.frame2.location.href="target2.htm">Click Here</a>
Of course, you'll need to substitute the names of your actual frames and
actual target documents.