modal_1.html 370 B

123456789101112131415161718192021
  1. <html>
  2. <head>
  3. <title>First Modal</title>
  4. <script>
  5. function openModal() {
  6. window.showModalDialog("modal_2.html",'dialogWidth:250px;dialogHeight:200px;resizable:yes')
  7. }
  8. </script>
  9. </head>
  10. <body>
  11. <p>Modal dialog sample</p>
  12. <input type="button" value="btn2" onclick="openModal();">
  13. <a id="lnk2" href="javascript:openModal()">lnk2</a>
  14. <div>
  15. </div>
  16. </body>
  17. </html>