frames samenvoegen

P

Pats

Hoe kan ik op de indexpagina het hoofdframe en het inhoudsframe gelijktijdig
laten wijzigen met een andere inhoud door 1 link aan te klikken.
Kun je frames koppelen op een of andere manier.

gr,
pats
 
M

Michael Kimmer

Pats said:
Hoe kan ik op de indexpagina het hoofdframe en het inhoudsframe
gelijktijdig laten wijzigen met een andere inhoud door 1 link aan te
klikken.
Kun je frames koppelen op een of andere manier.

gr,
pats

Not via HTML. It can be accomplished via a Java script function invoked in a
embedded href. Make sure to specify the proper frames by name in the
caller's parameters list.

xxx.htm and yyy.htm are the HTM pages to be displayed in the specified
frames

<a href="javascript:Get2Docs('xxx.htm','contents','yyy.htm','banner')">

Java Script function in the <BODY> tag:
<SCRIPT LANGUAGE="JavaScript">
function Get2Docs(URL1, frame1, URL2, frame2)
{
parent.frames[frame1].location = URL1;
parent.frames[frame2].location = URL2;
}
</SCRIPT>

--
M.f.G.
Michael Kimmer

"Ein Tag an dem Du nicht lächelst ist ein verlorener Tag"
"Eine Nacht in der Du nicht schläfst ist eine verschlafene Nacht"
 
M

Michael Kimmer

Pats said:
Hoe kan ik op de indexpagina het hoofdframe en het inhoudsframe
gelijktijdig laten wijzigen met een andere inhoud door 1 link aan te
klikken.
Kun je frames koppelen op een of andere manier.

gr,
pats

Not via HTML. It can be accomplished via a Java script function invoked in a
embedded href. Make sure to specify the proper frames by name in the
caller's parameters list.

xxx.htm and yyy.htm are the HTM pages to be displayed in the specified
frames

<a href="javascript:Get2Docs('xxx.htm','contents','yyy.htm','banner')">

Java Script function in the <BODY> tag:
<SCRIPT LANGUAGE="JavaScript">
function Get2Docs(URL1, frame1, URL2, frame2)
{
parent.frames[frame1].location = URL1;
parent.frames[frame2].location = URL2;
}
</SCRIPT>

--
M.f.G.
Michael Kimmer

"Ein Tag an dem Du nicht lächelst ist ein verlorener Tag"
"Eine Nacht in der Du nicht schläfst ist eine verschlafene Nacht"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top