JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <head>
        <title>test image</title>
        <script>
        function loadImage() {
            img = new Image();
      img.src='http://25.media.tumblr.com/tumblr_m5n33fvJ1A1qgz81bo1_500.png';
            img.onload=(function() {
                document.getElementById('test_img').src = img.src;
            });               
}     
        </script>
    </head>
    <body>
        <img id="test_img" src="https://gs1.wac.edgecastcdn.net/8019B6/data.tumblr.com/tumblr_m6wge8UKdl1r6xquzo1_500.jpg" onClick="loadImage();"/>
    </body>
</html>