JSFiddle - React, Tailwind, and code Playground

by charaf11

HTML

<!-- Arrow which must be removed after clicking -->
<img src="http://northshoremama.ca/wp-content/uploads/2012/11/red-arrow.png" id="hide">

<!-- The button -->   
<a href="#" id = 'clickedButton'>
    <img src="http://www.kwvs.pepperdine.edu/playbutton.png" />
</a>

CSS

body{ background-color:black; }
img{ width:100px; }

JavaScript

$("#clickedButton").click( function() {
   $("#hide").fadeOut("slow");
});