JSFiddle - React, Tailwind, and code Playground
by dhaval_123
HTML
<img id="myImage" onclick="changeImage()" src="http://fakeimg.pl/300/">
<script>
function changeImage() {
var image = document.getElementById('myImage');
if (image.src.match("http://fakeimg.pl/250x100/")) {
image.src = "http://fakeimg.pl/300/";
} else {
image.src = "http://fakeimg.pl/250x100/";
}
}
</script>