| Author |
closing of popups
|
R . Ravi Kumar
Greenhorn
Joined: Sep 25, 2004
Posts: 6
|
|
Can you please tell me any solution for closing popup windows that are opened by the user. When the session expires or signed out from the application. Thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56202
|
|
|
Moving to the HTML/Javascript forum.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
if you have the pop ups object then you just have to reference the names example of a pop up newWin = window.open("url","newWin"); example of closing it if(newWin && !newWin.closed)newWin.close(); Eric
|
 |
 |
|
|
subject: closing of popups
|
|
|