JSFiddle - React, Tailwind, and code Playground
by ankit_19
HTML
<img id="thumbnailImage" src="http://s3-media1.ak.yelpcdn.com/bphoto/sMONYSiLUQEvooJ5hZh0Sw/l.jpg" alt="" width="100" height="100">
JavaScript
$("#thumbnailImage").click(function() {
$(this).attr('width', '400');
$(this).attr('height', '300');
});