Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <dialog>
  2. <p>окно</p>
  3. <button id="close">Закрыть</button>
  4. </dialog>
  5. <button id="show">Открыть окно!</button>
  6.  
  7.  
  8. <script type = text/javascript>
  9. var dialog = document.querySelector('dialog');
  10. document.querySelector('#show').onclick = function() {
  11. dialog.show();
  12. };
  13. document.querySelector('#close').onclick = function() {
  14. dialog.close();
  15. };
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement