Created
June 16, 2016 14:56
-
-
Save ajturner/482c3745f009ba3eedfae49b3e5bd9fe to your computer and use it in GitHub Desktop.
Demo of <dialog> thanks to @LeaVerou
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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