JSFiddle - React, Tailwind, and code Playground

HTML

<p>
 

 
 <img src="https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?url=https://habrastorage.org/files/65d/6a9/781/65d6a9781caa49fe8766db0374caa8bf.jpg&container=focus&refresh=2592000&resize_w=32"   id="ImgNeed1" />
 
  </p>

JavaScript

window.addEventListener('load', function() {
    var images = document.querySelectorAll('.ImgNeed1');
   
    images.forEach(function(image) {
        image.addEventListener('click', imageClickFunc);
    });
 

    function imageClickFunc() {
        alert('Привет! Ты кликнул на ' + this);   
    }
});