Dialog close() Method
Example
Show and close a dialog window:
var x = document.getElementById("myDialog");
function
showDialog()
{
x.show();
}
function closeDialog() {
x.close();
}
Try it yourself »
Definition and Usage
The close() method closes the dialog.
Tip: This method is often used together with the show() method.
Browser Support
The close() method is currently only supported in Opera 24+, Chrome 37+ and Safari 6.
Syntax
dialogObject.close()
Dialog Object