There is a web page with an iframe inside. Sometimes, Input text box controls, inside the iframe, are locked/ freezed. Users cannot enter text into them. But the text box ca
Here's the solution that worked for me, having tried all of the others on this page! Requires jQuery but I'm sure it could be rewritten in native JavaScript if that's necessary.
As with many of the other solutions, this should be added to the source of the iframe, assuming you have access to modify it:
$("body").focusout( function () {
window.focus();
});