I have an image and I want to start a youtube video only after I click the image. How can I do this?
Thanks a lot!
Have a look at:
Youtube API examples
the code will be something like this:
function onPlayerReady(event) {
    $('img').click(function() { 
        ytPlayer.playVideo();
    });
}
.click() JQuery event handler:
$("#clickMe").click(function(){
  $("#iframe")[0].src += "&autoplay=1";
  ev.preventDefault();
});
Another approach - switch iframe SRC (URL) with "?autoplay=1" version.
<a href="#" id="clickMe">PLAY</a>
<iframe id="iframe" width="1280" height="720" src="//www.youtube.com/embed/F0naUkyEkmM" 
            data-autoplay-src="//www.youtube.com/embed/F0naUkyEkmM?autoplay=1"></iframe>
jQuery:
jQuery("#clickMe").on('click',function(){
    var vi = jQuery("#iframe");
    vi.attr("src", vi.data("autoplay-src") );
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With