JSFiddle - React, Tailwind, and code Playground

HTML

<div class="img">
      <a target="_blank" href="kl_big.htm" id="turn-of-cloth-01_lg">
      <img src="images/galery/turn-of-cloth-01_lg.jpg"   width="110" height="90" />
      </a>
      <div class="desc">Add a description of the image here</div>
    </div>

JavaScript

$('a').click(function (event){
				var imgDetails = this;
        console.log($(imgDetails).html());
        console.log($('img', this).attr("src"));
        var linkID =$(this).attr("id"); 
        var imgSrcVal = $('img', this).attr("src");
        alert(imgSrcVal);
        return false;
    });