This question says the only way for an iFrame to capture keyboard events is when it has focus, but the goal is a little different.
Our page embeds multiple iFrames, all of whom monitor the same keydown events.
Is it possible to capture keydown events for all these child iFrames from the root document? This way, we can avoid code reduplication.
If not, is the only option to capture the keydown event in each child iFrame and push the event and handling up to the root document?