JSFiddle - React, Tailwind, and code Playground

HTML

<div onclick="alert('test');"><p>test</p><iframe id="myFrame" /></div>

JavaScript

window.onload = function () {
    myFrame = document.getElementById('myFrame');
    myFrame.contentDocument.addEventListener('click', function()
    {
        alert('test');
    });
};