Advertisement
Guest User

Untitled

a guest
Apr 5th, 2020
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>JavaScript-Beispiel</title>
  6.  
  7. </head>
  8. <body>
  9. <a href="beispiel.html" onclick="return oeffnen(this.href)">
  10.     Pop-up-Fenster öffnen</a>
  11. <script>
  12.   function oeffnen(url) {
  13.     var fenster = window.open(url, 'f', 'width=500,height=300');
  14.     fenster.focus();
  15.     return false;
  16.   }
  17. </script>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement