In this article we will discuss about popup window and closing it. To open a window by using window.open(). The window.open() has as 4 optional parameters.
Syntax:
window.open(URL, name, features, replace)
URL: URL is to open a page, if it is not specified a new window will open it should be blanked.
Features: The postion of the window where to locate top, left and also has features such as resizable,scrollbars,,heights etc.
Replace: It specifies the URL is new entry or to replaces old entry as new entry. It will work if the url is loaded into the same window. It has two properties true or false.
Example:
<input type="button" value="Open popup" onclick="openPopup()" />
<input type="button" value="Close popup" onclick="closePopup()" />
<script type="text/javascript">
var popup;
function openPopup() {
popup =window.open("http://google.com", "My Window", "height=300,width=300")
}
function closePopup() {
popup.close();
}
</script>
Output: