Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <iframe id="iframe" width="615" height="315" src="" class="hidden" frameborder="0" allowfullscreen></iframe>
  2.  
  3.     <input type="text" id="url" size="61" placeholder="Paste Youtube URL Here">
  4.     <button type="button" id="play" onclick="playvideo()">Play</button>
  5.     <button type="button" id="close" onclick="closevideo()">Close</button>
  6.  
  7.     <style>
  8.       .show {
  9.         display: block;
  10.       }
  11.       .hidden {
  12.         display: none;
  13.       }
  14.     </style>
  15.  
  16.     <script>
  17.       function playvideo() {
  18.         var url = document.getElementById("url").value;
  19.  
  20.         document.getElementById("iframe").setAttribute("src", url);
  21.         document.getElementById("iframe").setAttribute("class", "show");
  22.       }
  23.  
  24.       function closevideo() {
  25.         document.getElementById("iframe").setAttribute("class", "hidden");
  26.         document.getElementById("url").value = "";
  27.       }
  28.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement