Skip to content Skip to sidebar Skip to footer

Events To Iframe

How to assign events to iframe in javascript? Thanks in advance. I want to assign Keypress or keyup or click events.

Solution 1:

An iframe contains the usual document, window and body elements that you can assign events to. For maximum simplicity, do it inside the IFrame. Otherwise, just address the iframe from the outlying document:

document.getElementById("your_iframe_id"). ....

Post a Comment for "Events To Iframe"