JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://www.prelovac.com/vladimir/wp-content/uploads/2008/03/example.jpg" />
CSS
img {
cursor : pointer;
}
JavaScript
$('img').toggle(
function () {
$(this).attr('src', 'http://chachatelier.fr/programmation/images/mozodojo-mosaic-image.jpg');
},
function () {
$(this).attr('src', 'http://www.prelovac.com/vladimir/wp-content/uploads/2008/03/example.jpg');
}
);