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

Close remote doesn't work in Mac/NN

Status
Not open for further replies.

hsil

Technical User
Feb 14, 2001
1
US
I'm trying to open then close a remote control window using code like:

function showRemote() {
self.name = "main";
var windowprops = "height=420,width=524";
OpenWindow = window.open("xxx.htm","remote",windowprops);
}


And:

function closeRemote() {
timer = setTimeout('window.close();', 20);
}

I've set up a test at
Fiddled with the code in lots of ways. No problem with Win or Mac/IE, but in Mac/NN the remote will not both close and redirect the main window.

Any help is appreciated,
Howard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top