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

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

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

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

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

We will never send any spam emails. Promise.