JSFiddle - React, Tailwind, and code Playground

by Tushar Thakare

HTML

<!DOCTYPE html>
<html>
<body>


<iframe id="ifr" src="https://linkello.com/fiTrVUACB" style="border-radius:10px;width:360px;height:440px;border:0px;margin-top:-50px" title="W3Schools Free Online Web Tutorials"  allow="camera;microphone">
</iframe>

<div id='hider' style="width:360px;height:155px;background-color:white;position:relative;bottom:155px">
</div>

</body>
</html>

CSS

body{margin:0px;padding:0px;margin-top:-10px}

JavaScript

var clickIframe = window.setInterval(checkFocus, 100);
var i = 0;

function checkFocus() {
  if(document.activeElement == document.getElementById("ifr")) {
  	document.getElementById("hider").style.display = "none";
  	window.focus();
   }
}