You are here: irt.org | FAQ | JavaScript | Window | Q587 [ previous next ]
Not really. You need to use the onBlur event handler within the remote window to regain the focus - this has the adverse effects on some browsers of not letting you converse with any other window.
You could try using a delay:
<body onBlur="setTimout('self.focus',5000)">
Which gives a five second delay before refocusing the remote window.