HTML dialog playground

Explore dialog with a minimal preview made only from the opening button and the modal. Change command, commandfor, and closedby without generating CSS.

Ask AI

HTML dialog playground

Response generated with openai/gpt-5.4-nano. AI can make mistakes. Always review the result.
HTML
<button type="button" commandfor="baseline-dialog" command="show-modal">
  Open modal
</button>

<dialog id="baseline-dialog" closedby="any">
  <h2>Native dialog</h2>
  <p>This modal uses dialog, command, commandfor, and closedby without adding CSS.</p>
  <button type="button" commandfor="baseline-dialog" command="close">
    Close
  </button>
</dialog>
JS