- 2,491
Ok, I am currently in the process of redesigning my website to possibly use Iframes. My question is, How do I target a link in my iframe window so that it opens in the same window AND underneath my Iframe? Basically what I want to do is take my current website(It's in normal frames) and rewrite it so that It uses Iframes. I'm confused as to how to go about this.
Here is what I have so far. This isn't my entire page however.
Is there something I need to add to my IFrames page such as TARGET="parent"? I'm not really sure if I've explained what I can't figure out.
Here is what I have so far. This isn't my entire page however.
PHP:
<html>
<head>
<link rel="stylesheet" type="text/css" href="C:\csssheet.css" title="CSSsheet">
</head>
<body>
<title>Test</title>
<iframe src="linksframe.html" name="linksframe" align="LEFT" height="350" width="200" frameborder="0"></iframe>
</body>
</html>
Is there something I need to add to my IFrames page such as TARGET="parent"? I'm not really sure if I've explained what I can't figure out.