Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

4 frames, want to open new site?!

Status
Not open for further replies.

PS1983

Technical User
Nov 6, 2001
83
AT
well not very good subject=(!
my problem:
i have this site consisting of 4 frames
Code:
<html>

<head>
<title>3-media project</title>
</head>

<frameset framespacing=&quot;0&quot; border=&quot;0&quot; cols=&quot;*,120,*&quot; frameborder=&quot;0&quot;>
  <frameset framespacing=&quot;0&quot; border=&quot;0&quot; rows=&quot;50,*&quot;>
  	  <frame name=&quot;f1_oben&quot; src=&quot;f2_rechts.htm&quot; scrolling=&quot;no&quot; noresize>
	  <frame name=&quot;f1_links&quot; src=&quot;f1_links.htm&quot; target=&quot;_self&quot; scrolling=&quot;no&quot; noresize>
  </frameset>
  <frameset framespacing=&quot;0&quot; border=&quot;0&quot; rows=&quot;110,*&quot;>
	 <frame name=&quot;f1_scroll&quot; src=&quot;f1_scrollo.htm&quot; scrolling=&quot;no&quot; noresize>
	 <frame name=&quot;f1_rechts&quot; src=&quot;f1_rechts.htm&quot; scrolling=&quot;no&quot; noresize>
  </frameset>
  <frame name=&quot;f2_rechts.htm1&quot; src=&quot;f2_rechts.htm&quot; scrolling=&quot;no&quot; noresize>
  <noframes>
  <body>

  <p>Diese Seite verwendet Frames. Frames werden von Ihrem Browser aber nicht
  unterstützt.</p>

  </body>
  </noframes>
</frameset>

</html>

in one frame their is a link to another site and i want the site to open completely not in the specific frame, for example open wasn't that something with Target or something ?

i'm pretty out of the homepage thing wasn't busy for 2 months =( want to get into it again and i'm having my little starting problems
any help
thx a lot
;) steve
 
here is the code of the site i want the link to be
its the f1_rechts.htm
Code:
<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<html>
<head>
	<title>frame1_rechts</title> 
	<link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/text.css&quot;>
	<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
	<!--
	function FrameChange(URL1,F1,URL2,F2,URL3,F3) {
		parent.frames[F1].location.href=URL1;
		parent.frames[F2].location.href=URL2;
		parent.frames[F3].location.href=URL3;
	}
	
	// End -->
	</SCRIPT>

</head>
<body>
<table border=&quot;0&quot; width=&quot;100%&quot; height=&quot;100%&quot; valign=&quot;center&quot;>
  <tr>
  <td height=&quot;50&quot;><IMG height=39 alt=&quot;&quot; src=&quot;grafiken/3-mplogo.gif&quot; width=95 border=0><BR><BR>
	  <A href=&quot;javascript:FrameChange('work3_o.htm',0,'work3_1.htm',1,'f1_scroll.htm',2);&quot; onmouseover=&quot;window.status='work';return true;&quot; onmouseout=&quot;window.status='';return true&quot;>work</a><BR>
	  <A href=&quot;javascript:FrameChange('contact3_o.htm',0,'contact3.htm',1,'f1_scrollo.htm',2);&quot; onmouseover=&quot;window.status='contact';return true;&quot; onmouseout=&quot;window.status='';return true&quot;>contact</a><BR>
	  <a href=&quot;&quot;>back</a>
	  </TD></TR>
</TABLE>


</body>

</html>
thx for ANY help
steve
 
uppssy =)
target=&quot;_top&quot;
doh!
sorry!
thread closed!
thx anyway steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top