Skip to content

Instantly share code, notes, and snippets.

@Hatteron
Forked from martinwolf/play-yt-video.html
Created July 8, 2017 16:19
Show Gist options
  • Save Hatteron/21b91b7388a9918a6f0163b08ad3d311 to your computer and use it in GitHub Desktop.
Save Hatteron/21b91b7388a9918a6f0163b08ad3d311 to your computer and use it in GitHub Desktop.
JS: Play embedded YouTube Video on click
<a id="play-video" href="#">Play Video</a>
<iframe id="video" width="420" height="315" src="//www.youtube.com/embed/9B7te184ZpQ?rel=0" frameborder="0" allowfullscreen></iframe>
$('#play-video').on('click', function(ev) {
$("#video")[0].src += "&autoplay=1";
ev.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment