| View previous topic :: View next topic |
| Author |
Message |
sticks464
Joined: 31 Dec 2006
Posts: 2625
|
| Posted: Mon Mar 30, 2009 1:01 pm |
|
|
Quote: jlm22
Quote: target="nameofiframe.html"?
You can't open a new page inside an existing page. You want target="main" |
|
|
jlm22
Joined: 05 Feb 2009
Posts: 31
|
| Posted: Mon Mar 30, 2009 1:41 pm |
|
|
| i tried target="main" but it still opened in a new window... |
|
|
sticks464
Joined: 31 Dec 2006
Posts: 2625
|
| Posted: Mon Mar 30, 2009 2:00 pm |
|
|
Make the following changes
change
Code: <IFRAME id="main" src="http://missjoy.comyr.com/main.html"></IFRAME>
to
Code: <IFRAME id="main" name="main" src="http://missjoy.comyr.com/main.html"></IFRAME>
Then change the image map code from
Code: <div id="sidebar">
<img name="sunnav" src="sunnav.png" width="279" height="270" border="0" id="sunnav" usemap="#m_sunnav" alt="navigation"><map name="m_sunnav" id="m_sunnav">
<area shape="rect" coords="84,194,186,228" href="http://missjoy.comyr.com/contact.html" target="main" alt="contact" title="Contact">
<area shape="rect" coords="82,142,186,182" href="http://missjoy.comyr.com/products.html" alt="DKS Products" title="DKS Products">
<area shape="rect" coords="83,91,186,127" href="http://missjoy.comyr.com/about.html" alt="About" title="About">
<area shape="rect" coords="82,43,187,79" href="http://missjoy.comyr.com/" alt="DSK Home" title="DKS Home">
</map>
</div>
to
Code: <div id="sidebar">
<img name="sunnav" src="http://missjoy.comyr.com/sunnav.png" width="279" height="270" border="0" id="sunnav" usemap="#m_sunnav" alt="navigation"><map name="m_sunnav" id="m_sunnav">
<area shape="rect" coords="84,194,186,228" href="http://missjoy.comyr.com/contact.html" target="main" alt="contact" title="Contact">
<area shape="rect" coords="82,142,186,182" href="http://missjoy.comyr.com/products.html" target="main" alt="DKS Products" title="DKS Products">
<area shape="rect" coords="83,91,186,127" href="http://missjoy.comyr.com/about.html" target="main" alt="About" title="About">
<area shape="rect" coords="82,43,187,79" href="http://missjoy.comyr.com/main.html" target="main" alt="DSK Home" title="DKS Home">
</map>
</div> |
|
|
jlm22
Joined: 05 Feb 2009
Posts: 31
|
| Posted: Mon Mar 30, 2009 2:06 pm |
|
|
yay, thanks so much for all the help!!
:D |
|
|
| |
|
|
|