Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <head>
  4. <script type="text/javascript">
  5.  
  6. function przelacz(){
  7.  
  8. //var los = Math.floor(Math.random()*2);
  9. //var filmik = ["https://www.youtube.com/embed/xgrjudvzgaA","https://www.youtube.com/embed/cmRQmsISE34"];
  10.  
  11. var adres = document.getElementById("adres").value;
  12. document.getElementById("yt").src=adres;
  13. }
  14.  
  15. </script>
  16. </head>
  17. <body>
  18. <div class="player">
  19. <iframe id="yt" width="560" height="315" src="https://www.youtube.com/embed/SbQc_JLUH7k?rel=0" frameborder="0" allowfullscreen></iframe><br><br>
  20. <input id="adres" type="text" style="width:500px;">
  21. <input type="submit" value="zmien" onclick="przelacz()"/>
  22. </div>
  23.  
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement