Open In App

HTML DOM Dialog showModal() Method

The DOM Dialog showModal() method is used to show the dialog. The Dialog element is accessed by getElementById(). It is used in HTML5. While using this method, the user can’t interact with other elements on the page. To make the user interact with other elements, use the show() Method. 

Syntax:



dialogObject.showModal()

Example: This example shows the working of Dialog showModal() Method: 




<!DOCTYPE html>
<html>
 
<body>
    <h3>
          HTML DOM Dialog showModal() Method
      </h3>
    <p>
       Click on the below buttons to show the dialog window.
      </p>
    <button onclick="showDialog()">
          Show dialog box
      </button>
    <dialog id="showDialog"
            style="color:green">
        Welcome to GeeksforGeek
     </dialog>
 
    <script>
        let gfg =
            document.getElementById("showDialog");
        function showDialog() {
            gfg.showModal();
        }
    </script>
</body>
</html>

Output: 



 

Supported Browsers:

Article Tags :