JSFiddle - React, Tailwind, and code Playground

HTML

<div id="page">
    <p>I'm a <strong>paragraph</strong></p>
    <img src="http://www.bestmotherofthegroomspeeches.com/wp-content/themes/thesis/rotator/sample-4.jpg">
</div>

CSS

strong {
    font-weight: bold;
}

JavaScript

document.getElementById("page").onclick = function(e) {
    var target = e.target || e.srcElement;
    alert(e.target.tagName);
    console.log(e.target);
};