JSFiddle - React, Tailwind, and code Playground

by Sulthan Allaudeen

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#image").click(function(){
        $("#show").show();
    });
});
</script>
<span id='show' style='display:none'>
<img src='
http://media.giphy.com/media/109Ku3hdapZJle/giphy.gif'>
</span>

<span id='image'>
<img src='http://www.techinsights.com/uploadedImages/Public_Website/Content_-_Primary/Teardowncom/Sample_Reports/sample-icon.png'>
</span>