Is there a way to listen for keypress events on the parent page while the iframe has focus? Or, alternatively, is it possible to separate the focus from the iframe?
Please note: iframe is not within the same domain, so I can not change its contents using javascript.
I tried the following jquery on the parent page, thinking that intermittent blur could happen, but that doesn't seem to be the case.
function iframeBlur(){ $("#iframe").blur(); } var blurif = setInterval(iframeBlur, 500);
source share