JSFiddle - React, Tailwind, and code Playground

HTML

<iframe width="100%" height="400" src="http://gadelkareem.com" ></iframe>
<div id="result"></div>

JavaScript

$(window).click(function(e) {
    $('#result').text('Clicked inside document');
});

$(window).blur(function(e) {
    $('#result').text('Clicked out of the window or on the iframe');
});