vote up 2 vote down star
1

How do I disable the support for JavaScript keypress events in iframes?

I need keypress events disabled only in specific iframes, so doing a catch-all-events-and-make-em-do-nothing solution is not an option.

flag

1 Answer

vote up 3 vote down check

Does this example does what you want ?

According to this thread, something along the line of:

document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);

helps capturing keypress in a given iframe. If they can be captured, they can be disabled.

Warning: as pointed out by Allain Lalonde in the comments:

This will work if the iframe's content isn't from another domain.

link|flag
This will work if the iframe's content isn't from another domain. Thought that might be relevant. – Allain Lalonde Nov 30 '08 at 14:26

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.