pop-up windows?

liunx

Guest
just wondering how can i make a popup window - i think it has something to do with javascript but not sure.<br />
<br />
this is what i have -<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"pic1.htm"><img src="../images/i-netplay%20members%2001.jpg" width="220" height="165" border="0"></a <br />
<br />
how do i edit it to get a popup window.<br />
<br />
btw is it something i do to the page with the link? or something i do to the page i am actual linking to<br />
<br />
just to clarify, when i say popup window i mean a link that whn you click on it a new page opens AND there are not tool bars or anything.<br />
<br />
the code to make a button on the page to auto close it would be greatly apprectiated too.<br />
<br />
thnks<br />
da_bomb<!--content-->You might find the following link useful.<br />
<br />
<!-- m --><a class="postlink" href="http://htmlgoodies.com/beyond/openwin.html">http://htmlgoodies.com/beyond/openwin.html</a><!-- m --><!--content-->thnks m8<!--content-->The HTML Goodies tutorials are full of incorrect information and that one is no different from the rest. Try:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"pic1.htm" onclick="window.open(this.href,'child', 'height=300,width-200'); return false"><img src=http://www.webdeveloper.com/forum/archive/index.php/"../images/i-netplay%20members%2001.jpg" width="220" height="165" border="0"></a><br />
<br />
And see <!-- m --><a class="postlink" href="http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731">http://developer.netscape.com/docs/manu ... tm#1202731</a><!-- m --> for the details concerning the Window.open() method.<!--content-->
 
Back
Top