Use of Dialog Tag in HTML | HTML Dialog Tag
×

HTML DIALOG <dialog> Tag

2591

The <dialog> tag is used to construct a dialog box and window including a popup or modal window on a web page.

Note: This tag is not compatible with Internet Explorer.

Code:

<!DOCTYPE html>
<html>
  <head>
    <title> Dialog With JavaScript </title>
    <style>
     dialog {
       width: 50%;
      }
    </style>
  </head>
  <body>

    <div>
      <dialog id="DialogboxExample">
        <p>
          This is a dialog window.
        </p>
        <button id="hide">Close dialog text</button>
      </dialog>
      <button id="show">Show dialog text</button>
	<p><b>Note:</b> The dialog tag is not supported in Internet Explorer.</p>
    </div>
    <script type="text/JavaScript">
      (function() {
         var dialog = document.getElementById('DialogboxExample');
         document.getElementById('show').onclick = function() { dialog.show();
         };
         document.getElementById('hide').onclick = function() { dialog.close();
        };
      })();
    </script>

  </body>
</html>

Output:



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments