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.
Click here for more info
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>');
}
function closepopup()
{
if(false ==
my_window.closed)
{
my_window.close ();
}
else
{
alert('Window already closed!');
}
}
</SCRIPT>
<body> <P> <A
href="javascript: popuponclick()">Open Popup
Window</A> </P> <P> <A href="javascript:
closepopup()">Close the Popup
Window</A> </P> </body> </html>
See the code above in work in the Link below.
JavaScript Window Close Example 1
Click on the 'Open Popup window' link to open the popup first and
then click on the 'Close the Popup window' link to close the popup.
Build Web Forms Faaaast!!
Using Simfatic Forms it is very easy to design, create,
install and maintain web forms; no coding required!
Quickly create your form, install it and receive form
submissions by email.
Click here for more info
|