View Single Post
Old 10-30-2011, 09:25 PM   PM User | #4
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,364
Thanks: 18
Thanked 348 Times in 347 Posts
sunfighter is on a distinguished road
Thought you were going to do this with the menu section?

And a warning = It is up to the browser as to wither iframes works. I use FF and have it so everything opens in a new tab and I think most people do this. So it may be better to use AJAX to do this.
But here is the iframe way:

Code:
<html>
<body>

<a href="http://www.yahoo.com" target="here">YAHOO</a>

<iframe src="test_2.html" width="600px;" height="300px;" name="here" style="float:right;">
  <p>Your browser does not support iframes.</p>
</iframe>

</body>
</html>
sunfighter is offline   Reply With Quote