Adding event handler to an iframe using JQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:26:39Zhttp://stackoverflow.com/feeds/question/549488http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549488/adding-event-handler-to-an-iframe-using-jquery0Adding event handler to an iframe using JQuerytobby2009-02-14T18:19:55Z2009-09-30T01:12:08Z
<p>I want to assign a keydown event handler to an iframe. Something similar to the pure JS:</p>
<pre><code>document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true);
</code></pre>
<p>I tried:</p>
<pre><code>$(document.getElementById('iframe_id').contentWindow).keydown( function() {
// my func
});
</code></pre>
<p>But it does not work.. Please help!</p>
http://stackoverflow.com/questions/549488/adding-event-handler-to-an-iframe-using-jquery/549667#5496670Answer by Mcbeev for Adding event handler to an iframe using JQueryMcbeev2009-02-14T19:40:53Z2009-09-30T01:12:08Z<p>The $ function replaces the need for document.getElementById</p>
<pre><code>$('#iframe_id').contentDocument.keydown(function() {
// logic
});
</code></pre>
http://stackoverflow.com/questions/549488/adding-event-handler-to-an-iframe-using-jquery/550247#5502474Answer by Crescent Fresh for Adding event handler to an iframe using JQueryCrescent Fresh2009-02-15T03:22:28Z2009-02-15T03:22:28Z<p><code>contentWindow</code> is the <code>iframe</code>'s <code>window</code> object. You want the <code>iframe</code>'s <code>document</code> instead:</p>
<pre><code>$(document.getElementById('iframe_id').contentWindow.document).keydown(function() {
// my func
});
</code></pre>
<p>Note that I am not sure how jQuery reacts to elements from other windows/frames.</p>