|
Posted by scripts.contact on 07/18/07 09:02
On Jul 16, 12:13 pm, kjk <kjkREM...@usa.com> wrote:
> popup window persistently float above all other windows?
you can try something like(focus the new window every 1 millisecond)-
win=open('','_blank','width=500,height=400');
setInterval('win.focus()',1)
or(focus it on blur) :
win=open('','_blank','width=500,height=400');
win.onblur=function(){win.focus()}
[Back to original message]
|