Adding event handler to an iframe using JQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:26:39Z http://stackoverflow.com/feeds/question/549488 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/549488/adding-event-handler-to-an-iframe-using-jquery 0 Adding event handler to an iframe using JQuery tobby 2009-02-14T18:19:55Z 2009-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#549667 0 Answer by Mcbeev for Adding event handler to an iframe using JQuery Mcbeev 2009-02-14T19:40:53Z 2009-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#550247 4 Answer by Crescent Fresh for Adding event handler to an iframe using JQuery Crescent Fresh 2009-02-15T03:22:28Z 2009-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>