vote up 0 vote down star

I have a page with a document.onkeydown event handler, and I'm loading it inside an iframe in another page. I have to click inside the iframe to get the content page to start "listening". is there some way I can use javascript in the outer page to set the focus to the inner page so I don't have to click inside the iframe?

EDIT: ressponse to comment:

the context is the main window is a light-box-like system, except instead of pictures, it shows iframes, and each iframe is an interactive page with keydown/mousemove handlers. these handlers don't fire until I click in the iframe after showing the light-box-thing.

I'm not actually looking to "setFocus" in the traditional sense as much as "enable event handlers on the iframe contentDocument"

flag

76% accept rate
Can you provide more context? Are you typing in the main window and expecting that text to appear (in one form or another) in your iframe? This is relevant because setting the focus inside your iframe would interfere with users typing in the main window. – cLFlaVA Dec 15 '08 at 17:08

3 Answers

vote up 0 vote down

This is something that worked for me, although it smells a bit wrong:

var iframe = ...
var doc = iframe.contentDocument;

var i = doc.createElement('input');
i.style.display = 'none'; 
doc.body.appendChild(i);
i.focus();
doc.body.removeChild(i);

hmmm. it also scrolls to the bottom of the content. Guess I should be inserting the dummy textbox at the top.

link|flag
vote up 0 vote down

Try listening for events in the parent document and passing the event to a handler in the iframe document.

link|flag
vote up 0 vote down
document.getElementsByName("iframe_name")[0].contentWindow.document.body.focus();
link|flag
doesn't seem to work for me – Jimmy Dec 18 '08 at 0:58

Your Answer

Get an OpenID
or

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