Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to get the target element in a keypress event handler in a design mode iframe ? I know it can be done in the mousedown event handler (by accessing event.target), but in the keypress / keydown handlers event.target is always the iframe element. For example, with the following html, if the user types into the div where it says * key press here *, I would like in the keypress / keydown event handler to be able to determine that the target element is the div with id='b'. Is this possible ?

<div id='a'>
    <div id='b'>
        *** Key press here ***
    </div>
</div>
share|improve this question

1 Answer

Got an answer here instead :

http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_25589672.html#a29053420

share|improve this answer
-1 that is paid content ... – Karussell May 9 '11 at 15:28
Yes, and I got an answer there, not here. – Tom Dec 13 '11 at 22:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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