Embed YouTube Videos with JavaScript

This explains how you can embed YouTube videos using the Google+ approach - only the video thumbnail is loaded along with the page and the actual player loads when the user hits the play button.

<!-- You can embed  multiple Youtube videos on a page -->
<div class="youtube" id="LcIytqkbdlo" style="width:560px; height: 315px;"></div>

<div class="youtube" id="_Jmisv1Spck" style="width:560px; height: 315px;"></div>

<!-- Include the JavaScript only once -->

<script>
  // Find all the YouTube video embedded on a page
  var videos = document.getElementsByClassName('youtube');

  for (var i = 0; i < videos.length; i++) {
    var youtube = videos[i];

    // Based on the YouTube ID, we can easily find the thumbnail image
    var img = document.createElement('img');
    img.setAttribute('src', 'http://i.ytimg.com/vi/' + youtube.id + '/hqdefault.jpg');
    img.setAttribute('class', 'thumb');

    // Overlay the Play icon to make it look like a video player
    var circle = document.createElement('div');
    circle.setAttribute('class', 'circle');

    youtube.appendChild(img);
    youtube.appendChild(circle);

    // Attach an onclick event to the YouTube Thumbnail
    youtube.onclick = function () {
      // Create an iFrame with autoplay set to true
      var iframe = document.createElement('iframe');
      iframe.setAttribute(
        'src',
        'https://www.youtube.com/embed/' + this.id + '?autoplay=1&autohide=1&border=0&wmode=opaque&enablejsapi=1'
      );

      // The height and width of the iFrame should be the same as parent
      iframe.style.width = this.style.width;
      iframe.style.height = this.style.height;

      // Replace the YouTube thumbnail with YouTube HTML5 Player
      this.parentNode.replaceChild(iframe, this);
    };
  }
</script>

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻