JSFiddle - React, Tailwind, and code Playground
by dhaval dave
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<div>
<img src="http://science-all.com/images/wallpapers/smile-images/smile-images-16.jpg" id="img1" alt="Smiley face" width="42" height="42">
</div>
<input id="cb_1" type="checkbox" >
JavaScript
$("#img_1").click(function(){
$("#cb_1").prop("disabled", !$("#cb_1").prop("disabled"));
});