modalindex.html 370 B

123456789101112131415161718192021
  1. <html>
  2. <head>
  3. <title>Main window</title>
  4. <script>
  5. function openModal() {
  6. window.showModalDialog("modal_1.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="btn1" onclick="openModal();">
  13. <a id="lnk1" href="javascript:openModal()">lnk1</a>
  14. <div>
  15. </div>
  16. </body>
  17. </html>