faqts : Computers : Programming : Languages : JavaScript : Frames

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

16 of 27 people (59%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

Update one Iframe from another

May 18th, 2005 10:31
Misfit Ryan, Work related


BEGIN Source of IFRAME.htm
<HTML>
<HEAD>
<TITLE>Frames</TITLE>
</HEAD>
<BODY>
<iframe src="Iframe1.htm" name="ONE" width="500" height="200" 
marginwidth=0 marginheight=0 border=0 frameborder=0 topmargin=0 
leftmargin=0 scrolling=no></iframe>

<iframe name="Iframe2" width="500" height="400" marginwidth=0 
marginheight=0 border=0 frameborder=0 topmargin=0 leftmargin=0 
scrolling=no></iframe>
</body>
</html>
END Source IFRAME.htm

Now, Within the Iframe 1 page target the hyperlink to the name of the 
second; in this case <a href="wherever.com" target="Iframe2">Link</a>