Guest User

Untitled

a guest
Feb 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Main window</title>
  4. <script type="text/javascript">
  5. var popupwindow = '';
  6.  
  7. function popupSelectItem(url) {
  8. if (!popupwindow.closed && popupwindow.location) {
  9. popupwindow.location.href = url;
  10. }
  11. else {
  12. popupwindow=window.open(url, 'name', 'height=200,width=150');
  13. if (!popupwindow.opener) {
  14. popupwindow.opener = self;
  15. }
  16. }
  17. if (window.focus) {
  18. popupwindow.focus();
  19. }
  20. return false;
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <form>
  26. Selected item:
  27. <input id="selectedItem" type="text">
  28. <input type="button" value="Choose an item" onclick="popupSelectItem('popup.html')">
  29. </form>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment