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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Popup Window in Netscape?

Status
Not open for further replies.

Ute

Programmer
Oct 16, 2000
8
0
0
NL
Hello,

I made a script (Javascript) that opens a new (popup)window. I did that with the following statement:


<html>
<head>
<title>
script test
</title>
<script language=&quot;javascript&quot;>
<!--
function newWindow()
{
myWin=window.open('}
// -->
</script>
</head>
<body>
<form>
<input type=&quot;button&quot; value=&quot;Open&quot; onClick=&quot;newWindow()&quot;>
</form>
</body>
</html>


In Internet Explorer everything is oke. The window had the specified width en height. But when I tested this in Netscape 4.x the window was full screen. X-)

What am I doing wrong? How can I make it possible to open the window in Netscape with the specified width en height?

Greetz, Ute.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top