YouTip LogoYouTip

Met Dialog Show

# Dialog show() Method [![Image 8: Dialog Object Reference](#) Dialog Object](#) ## Example Show or close the dialog window: var x = document.getElementById("myDialog"); function showDialog() { x.show(); } function closeDialog() { x.close(); } [Try it Β»](#) * * * ## Definition and Usage The show() method is used to display a dialog window. When this method is used to display a dialog window, the user can still interact with other elements on the page. If you do not want the user to interact with the page while the dialog window is open, you can use the showModal() method. **Tip:** This method is often used together with the [close()](#) method. * * * ## Browser Support ![Image 9: Internet Explorer](#)![Image 10: Firefox](#)![Image 11: Opera](#)![Image 12: Google Chrome](#)![Image 13: Safari](#) **Note:** Currently, only Chrome Canary and Safari 6 support the show() method. **Note:** Even though Chrome Canary supports the element, you must open chrome://flags in the Chrome address bar and enable the "Enable experimental Web Platform features" flag. After enabling it, you need to restart the Chrome browser. * * * ## Syntax _dialogObject_.show() * * Dialog Object](#)
← Met Dialog ShowmodalMet Dialog Close β†’