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!

Windows XP giving problems in Netscape 6

Status
Not open for further replies.

RemoteSilicon

Programmer
Feb 13, 2001
45
0
0
GB
Hello
I have written a javascript code that displays a page in new window on click of a button. I am using "open" command and it works in IE and netscape when the platform is windows 2k or 98 but it gives problems when I try to access my site through mac or windows xp. The syntax is;

var x = open('test.htm', '', '');

Can anyone tell me what is wrong with this code.

Also

I want to make this a modal window so that it always stay on top its parent window. Please help me.
 
The correct syntax is:

var x = window.open('test.htm', '', '');

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top