Click to See Complete Forum and Search --> : I frame


lunitari_8100
08-09-2003, 06:48 PM
Hi I was hoping someone could possible help me out with a code. On my page I have a left side menu and I'm wanting to make the right side of the page an iframe. And when i click a button on the left side I want it to pop up in the right side menu(middle of the page). How would I go about doing this?

Jonathan
08-10-2003, 01:31 AM
You just use the IFRAME command.


<iframe width="15" height="15" style="position:absolute;left:300px;top:300px;" name="name_this_frame_here" src="the_page_you_want_shown_onLoad.html"></iframe>


Then you would have to have a code in your <a> tag


<a href="your_page.html" target="name_this_frame_here">


Hope this helps!