votintsev
Results
2
comments of
votintsev
@meandmax There is a collection of some attempts at solutions: https://stackoverflow.com/questions/2381336/detect-click-into-iframe-using-javascript For example: ``` setInterval(function(){ let elem = document.activeElement; if (document.hasFocus()) { if (elem && elem.tagName === 'IFRAME' && !browserInteractionTime.isRunning())...
@Torann Please, apply PR.