Opening new window in Mozilla

R

Rob

Why does the following code NOT work in Mozilla, but it DOES in IE
(for Mac) and Safari?

<a href="somepage.html" onClick="window.open('somepage.html',
'SomeWindowTitle', 'width=790,height=560, scrollbar=auto,
menubar=no');">Enter</a>

Please help...thanks
 
J

Janwillem Borleffs

Rob said:
Why does the following code NOT work in Mozilla, but it DOES in IE
(for Mac) and Safari?

<a href="somepage.html" onClick="window.open('somepage.html',
'SomeWindowTitle', 'width=790,height=560, scrollbar=auto,
menubar=no');">Enter</a>

Please help...thanks

Works in my copy (Mozilla v1.4), but is the following not what you really
want?

<a href="somepage.html" target="SomeWindowTitle"
onClick="window.open('','SomeWindowTitle',
'width=790,height=560,scrollbar=auto,menubar=no');">Enter</a>

P.S.: Watch for spaces in the window properties, they shouldn't be present.


JW
 
D

DU

Rob said:
Why does the following code NOT work in Mozilla, but it DOES in IE
(for Mac) and Safari?

<a href="somepage.html" onClick="window.open('somepage.html',
'SomeWindowTitle', 'width=790,height=560, scrollbar=auto,
menubar=no');">Enter</a>

Please help...thanks

As coded, your link will not open a requested popup if javascript is
disabled. As coded, your link will create a popup and then load the
referenced resource in the opener too. As coded, the popup will exceed
the available space for application in MSIE, Mozilla and Opera browsers
so error compensation/correcting functions will need to spend time, cpu
to render the window within the os-workarea for applications.

<a href="somepage.html" target="SomeWindowTitle"
onclick="window.open(this.href, this.target,
'width=600,height=500,scrollbars=yes,resizable=yes,status=yes'); return
false;">Enter</a>

will open a popup window in all browsers under normal conditions. Note
that scrollbar=auto will not be honored in MSIE 5+, Mozilla, NS 6+ and
Opera 7. It must be scrollbars=yes. And you must make sure there is no
blank space in the 3rd argument string list.

DU
--
Javascript and Browser bugs:
http://www10.brinkster.com/doctorunclear/
- Resources, help and tips for Netscape 7.x users and Composer
- Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x
http://www10.brinkster.com/doctorunclear/Netscape7/Netscape7Section.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top