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(); }); }