JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://www.christownsend.com/images/superdog.jpg" />
<img src="http://www.christownsend.com/images/superdog.jpg" />
CSS
button { width: 120px; height: 150px; }
img { left: 30px; top: 30px; width: 80px; height: 110px;}
JavaScript
$('img').bind('click', function() {
window.alert('Woof!');
});