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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Window always on top.

Status
Not open for further replies.

thore

IS-IT--Management
Mar 8, 2002
6
0
0
SE
Hi,

I have a problem with window(). I want a window to open and stay on top of all other windows untill window.close() is called.
CODE:
var page="url to the page";
window.open(page, "windowWhileUpload");

1 How do i get the window to stay ontop?
2 How do I close this window?

As I tried to let a Perlmodule use window.close(windowWhileUpload), nothing happened. Do i use it the right way?

Thank you all

/Mac
 
var x = window.open('url', 'name');
x.document.body.onblur = function(){self.focus()}

this should work. luciddream@subdimension.com
 
thank you!

I´ll try that
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top