Advertisement
Guest User

Rimuv Kebap

a guest
Apr 25th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>
  5. Rimuv Kebap
  6. </title>
  7. <meta charset="utf-8">
  8. </head>
  9. <body>
  10. <input type="text" id="inpt" value=""><br>
  11. <input type="button" id="btn" value="boink!"><br>
  12. <div id="outpt">
  13.  
  14. </div>
  15. <script>
  16. var input = document.getElementById("inpt");
  17. var output = document.getElementById("outpt");
  18. var button = document.getElementById("btn");
  19.  
  20. button.addEventListener("click",function() {
  21. if(input.value=="Rimuv Kebap"){
  22. output.innerHTML = '<iframe width="640" height="360" src="https://www.youtube.com/embed/ocW3fBqPQkU?autoplay=1" frameborder="0" allowfullscreen></iframe>'
  23. }
  24. else{
  25. output.innerHTML = input.value;
  26. }
  27. });
  28.  
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement