|
Using the window.close methodIt may be needed that you need to give a close link in the popup you created. The window.close () method could be used to close a window.However, there are certain security restrictions for using the close () method. The close method closes only windows opened by JavaScript using the open method. If you attempt to close any other window, a confirm message is displayed, asking the user to choose whether the window is to be closed or not.
If you have the reference to a window, you can use the reference to the window to close.
You can close the current window using self.close ();
Note: Sample Code for window.close()
<html>
<SCRIPT
language="JavaScript1.2">
<body>
See the code above in work in the Link below.
|
|
. Copyright © 2003-2009 JavaScript-coder.com. All rights reserved. |
||