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

A JS popup problem 1

Status
Not open for further replies.

aleci

Programmer
May 22, 2001
40
GB
Hi all,
I have the following code to generate a popup window containing the file terms.htm:

function topWindow4(){
popup = window.open("terms.htm","","height=500,width=600,resizable=no,scrollbars,screenX=50,screenY=100,top=30,left=50");
}

The problem is that in Netscape the window is not resizable, as required, but testing on IE4.0 gives the window to be resizable...

I've tried leaving out the 'resizable' attribute altogether but this didnt work either.

Does anybody have any ideas?
Thanks in advance!
 
It works OK for me in IE4.0 (version 4.72.3110.8)

If not for you try to give a name to the popup window:

window.open("terms.htm","PopupName","height......

Erik
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top