JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="myiframe" src="/hey"/>

CSS

#myiframe { width:100%; height:100%; }

JavaScript

$iframe = $( document.getElementById("myiframe").contentWindow.document );

$iframe.find("body").click(function(){
    alert("hey");
});