Dialog close() Method

Dialog Object Reference Dialog Object

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

Internet Explorer Firefox Opera Google Chrome Safari

The close() method is currently only supported in Opera 24+, Chrome 37+ and Safari 6.


Syntax

dialogObject.close()


Dialog Object Reference Dialog Object

Color Picker

colorpicker