$('.youtubePlay').on('click', function () {
var cont = $(this),
video = cont.attr('data-video'),
height = cont.height();
cont.removeClass('youtubePlay');
cont.html('<iframe width="100%" height="'+height+'" src="
https://www.youtube.com/embed/'+video+'?rel=0&modestbranding=1&showinfo=0&autohide=1&rel=0&enablejsapi=1" frameborder="0" allow="autoplay; accelerometer; encrypted-media; gyroscope;" allowfullscreen></iframe>');
setTimeout(function () {
cont.find('iframe')[0].contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*');
},500)
});