kodie of Happy Medium
8/3/2016 - 2:58 PM

Make YouTube video embeds responsive

Make YouTube video embeds responsive

var responsiveVideos = $('iframe[src*="//www.youtube.com"]');

responsiveVideos.each(function(){
  $(this)
    .data('aspectRatio', $(this).height() / $(this).width())
    .width('100%')
    .removeAttr('height');
});

$(window).resize(function(){
  responsiveVideos.each(function(){
    $(this)
      .height($(this).width() * $(this).data('aspectRatio'));
  });
}).resize();