JSFiddle - React, Tailwind, and code Playground
HTML
<button id="clickme">Click here</button>
<img id="book"style="display: none;" src="http://curiouspresbyterian.files.wordpress.com/2010/10/pile-of-books.jpg" alt="" width="100" height="123" />
CSS
div#contact{
cursor: pointer;
}
JavaScript
$('#clickme').click(function() {
// $('#book').slideDown('slow', function() {
alert('sdsdsd');
// Animation complete.
});
});