Advertisement
ionilancer

Untitled

May 21st, 2019
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>JavaScript YT BOT</title>
  4. <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
  5. <script>
  6. $(function(){
  7. function cargarVideo(){
  8. var videoId= "LBKtF6bB72Y?autoplay=1&mute=1"
  9. $(".actualyoutube iframe").remove();
  10. $('<iframe width="420" height="315" frameborder="0" allowfullscreen></iframe>')
  11. .attr("src", "http://www.youtube.com/embed/" + videoId)
  12. .appendTo(".actualyoutube")
  13. }
  14. $("#bntiniciar").click(function(){
  15. setInterval(cargarVideo,5000)
  16. });
  17. });
  18. </script>
  19. </head>
  20. <body>
  21. <input id="bntiniciar" type="button" value="Iniciar bot"/>
  22. <div class="actualyoutube">
  23. <iframe width="560" height="315" src="https://www.youtube.com/embed/LBKtF6bB72Y" frameborder="0" allowfullscreen></iframe>
  24. </div>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement