Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Html Editors Enhanced-html > Re: iframe help...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 5 Topic 30 of 112
Post > Topic >>

Re: iframe help - change two iframes with one click - please ignore

by Will <AskMeAboutItSPAMpunk@[EMAIL PROTECTED] > Feb 20, 2004 at 10:00 PM

Arne Hendrickson wrote:

> Can anyone tell me how to edit this script for "traditional frames" to
work
> with iframes?
> 
> SCRIPT language="JavaScript">
> <!----hide
> function change2()
> {
> parent.left_frame.location="page3.htm";
> parent.right_frame.location="page4.htm";
> }
> //------>
> </SCRIPT>
> 



I can give you something non-specific. Adapt as you need it:

In the body:

<iframe src="One.html" name="Freddie"></iframe>
<iframe src="aDifferentOne.html" name="Francis"></iframe>

The link:

<a href="#" onClick="change2()">Link me up, baby!</a>

The code:

function change2(){

document.Freddie.src="Two.html";
document.Francis.src="aDifferentTwo.html";
/* Cut n' paste URLs as you like it */

}



If you want to change both from INSIDE one of the i-frames (in my 
example, lets say 'Freddie'), then change the link to:

<a href="Two.html" onClick="change2()">Link me all over!</a>

And remove the first line of code in the function, edit the second, to 
make it:

function change2(){

parent.Francis.src="aDifferentTwo.html";
/* Cut n' paste URLs as you like it */

}




 5 Posts in Topic:
iframe help - change two iframes with one click - please ignore
"Arne Hendrickson&qu  2004-02-09 03:56:22 
Re: iframe help - change two iframes with one click - please ign
"Steve R." <  2004-02-11 13:33:53 
Re: iframe help - change two iframes with one click - please ign
"Arne Hendrickson&qu  2004-02-12 15:54:52 
Re: iframe help - change two iframes with one click - please ign
"Steve R." <  2004-02-12 16:43:09 
Re: iframe help - change two iframes with one click - please ign
Will <AskMeAboutItSPAM  2004-02-20 22:00:28 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat May 17 2:31:28 CDT 2008.