JSFiddle - React, Tailwind, and code Playground

by Phil Brown

HTML

<img class="backgroundImage" style="width: 200px; height: 200px;" src="https://picsum.photos/200/200?image=0">
<img class="backgroundImage" style="width: 200px; height: 200px;" src="https://picsum.photos/200/200?image=1">
<img class="backgroundImage" style="width: 200px; height: 200px;" src="https://picsum.photos/200/200?image=2">

JavaScript

$(".backgroundImage").closest("img").click(function(e) {
  url = e.target.getAttribute('src');
  console.log(url);
});