vote up 0 vote down star

I want to assign a keydown event handler to an iframe. Something similar to the pure JS:

document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true);

I tried:

$(document.getElementById('iframe_id').contentWindow).keydown( function() {
   // my func
});

But it does not work.. Please help!

flag

2 Answers

vote up 2 vote down

contentWindow is the iframe's window object. You want the iframe's document instead:

$(document.getElementById('iframe_id').contentWindow.document).keydown(function() {
    // my func
});

Note that I am not sure how jQuery reacts to elements from other windows/frames.

link|flag
Great! Thanks, that works! – tobby Feb 15 at 7:09
vote up 0 vote down

The $ function replaces the need for document.getElementById

$('#iframe_id').contentDocument.keydown(function() {
   // logic
});
link|flag

Your Answer

Get an OpenID
or

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