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