Dialog
Native HTML dialog with styled backdrop.
<dialog id="example">
<h3>Hello</h3>
<p>Dialog body.</p>
<button type="button">Close</button>
</dialog>
<script>
document.getElementById('example').showModal();
</script>
Skip to main content
Native HTML dialog with styled backdrop.
<dialog id="example">
<h3>Hello</h3>
<p>Dialog body.</p>
<button type="button">Close</button>
</dialog>
<script>
document.getElementById('example').showModal();
</script>