Skip to content

Instantly share code, notes, and snippets.

@ajturner
Created June 16, 2016 14:56
Show Gist options
  • Select an option

  • Save ajturner/482c3745f009ba3eedfae49b3e5bd9fe to your computer and use it in GitHub Desktop.

Select an option

Save ajturner/482c3745f009ba3eedfae49b3e5bd9fe to your computer and use it in GitHub Desktop.
Demo of <dialog> thanks to @LeaVerou
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Dialog Demo</title>
</head>
<body>
<button onclick="dialog.showModal()">Open Dialog</button>
<dialog id="dialog">
<h1>Ceiling cat is watching
<button onclick="dialog.close()">x</button>
</h1>
<p>Greetings, Hoomans.</p>
</dialog>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment