JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
<img src="http://i.imgur.com/BnnRFB8.png" data-url="https://www.youtube.com/embed/TPE9uSFFxrI" />

JavaScript

$('img').click(function(event){	
  $(this).replaceWith($('<iframe />', {
  	'src': $(this).data('url'),
    'width': $(this).width(),
    'height': $(this).height()
  }));

})