Using the window.close method
It 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.
For example:
popup_window = window.open("");
.....
popup_window.close ();
You can close the current window using self.close ();
For example:
<A href="javascript: self.close ()">Close this Window</A>
Note:
You can create full featured, great looking popups without any programming.
Sample Code for window.close()
<html>
<head>
<title>JavaScript Window Close Example </title>
</head>
<SCRIPT language="JavaScript1.2">
function popuponclick()
{
my_window = window.open("",
"mywindow","status=1,width=350,height=150");
my_window.document.write('<H1>The Popup Window</H1>');
} <body>
<P>
<A href="javascript: popuponclick()">Open Popup Window</A>
</P>
<P>
<A href="javascript: closepopup()">Close the Popup Window</A>
</P>
</body>
</html>
function closepopup()
{
if(false == my_window.closed)
{
my_window.close ();
}
else
{
alert('Window already closed!');
}
}
</SCRIPT>
11/29/2007 3:03:26 AM
Category
Java Script
Back