JSFiddle - React, Tailwind, and code Playground

by k_rma

HTML

<img id="myFrikkinImage" src="http://placekitten.com.s3.amazonaws.com/homepage-samples/408/287.jpg" />

JavaScript

myImg = document.getElementById('myFrikkinImage');
myImg.addEventListener('click', function(){
    this.style.width=(this.style.width=='600px')?'400px':'600px';
});