Some websites have focus
set on an element on window load. If I iframe that website, It seems not able to set focus on parent window, programmatically. This only ha
If I've read this correctly you just need to prevent the focus being shifted from the parent window to an element in the iframe.
I would use an 'onfocus' trigger on the iframe element to switch the focus back to your page, like so:
If (as I suspect you do) you only want to prevent the iframe stealing the initial focus onload but would like the user to be able to shift focus to it later, use a status variable, like so:
I hope this helps and I'm here if you have any questions.