Click to See Complete Forum and Search --> : fixing a window (Netscape)


FlorDelgado
01-10-2003, 09:36 AM
Please, in Netscape I have a bouton that it opens a new window, is possible to leave this new window always opened and to continue working with the first window? Somebody has an idea ?

Thanks a lot

Flor

Zach Elfers
01-10-2003, 07:27 PM
Yes.

In the <body> section of the pop up window put onBlur="this.focus();". Like this:

<body onBlur="self.focus();">

FlorDelgado
01-13-2003, 04:40 AM
Thanks, but this solution does not allow me to work with the first window because it always receives focus and it prevents me to update data in the first. Do you know something of the property "alwaysRaised"

Thanks again

Flor

Charles
01-13-2003, 04:45 AM
From http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731
alwaysRaised : (JavaScript 1.2) If yes, creates a new window that floats below other windows, whether it is active or not. This is a secure feature and must be set in signed scripts.