Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why does this "pop-up window" function not work properly?!?

Status
Not open for further replies.

Timotheus

Programmer
May 4, 2000
1
SE
<br>Hello.<br><br>I've made this script that I wanted to generate a pop-up window, on a page where a lot of pop-ups are needed.<br>I wanted to try this solution, instead of making a HTML-page for every popup window.<br><br>Here's the script (I describe my problem below): <br><br>--------------<br><br>&lt;HTML&gt;<br>&lt;HEAD&gt;<br>&lt;TITLE&gt;&lt;/TITLE&gt;<br><br>&lt;script language=&quot;javascript&quot;&gt;<br>function openpop() {<br><br>var contents = '&lt;html&gt;&lt;head&gt;&lt;title&gt;hello!&lt;/title&gt;&lt;/head&gt;&lt;body bgcolor=&quot;#000000&quot; text=&quot;#ffffff&quot;&gt;Hello!&lt;/body&gt;&lt;/html&gt;';<br><br>var popupwindow = window.open('','popupwindow','width=200','height=200');<br>&nbsp;<br>popupwindow.document.write(contents);<br><br>}<br>&lt;/script&gt;<br>&lt;/HEAD&gt;<br>&lt;BODY onload=&quot;openpop()&quot;&gt;<br>&lt;/BODY&gt;<br>&lt;/HTML&gt;<br><br>------------<br><br>My problem is that I can't control the width and height of the window properbly. It seems like I can only set one of the size factors, so that if I set width to 200, my height setting is totaly ignored, and vice versa.<br><br>I hope you can help me out,<br><br>Tim.<br>
 
<FONT FACE=monospace>('','popupwindow','width=200','height=200');</font> should be (',popupwindow,width=200,height=200');<br><br>you only need one set of quotation marks around the thing. <p>REH<br><a href=mailto:hawkdogg@crosswinds.net>hawkdogg@crosswinds.net</a><br><a href= by Linux</a><br>Learn Linux and Leave out the Windows :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top