vote up 2 vote down star
1

So - I have a page which contains a textarea and a dynamically created IFrame which displays a PDF using the adobe acrobat plugin.

Initially the textarea is focused.

I want the textarea to be focused, but the IFrame steals focus when the pdf is loaded.

In firefox it is trivial to reset the textarea as the focused element.

I do this by listening to the iframes "load" event and then calling .focus() on the textbox.

M$ IE doesnt fire the onload event for dynamically created Iframes, so to determine when its ready I use the readyState property of the IFrame:

var ieIframeReadyHandler = function() { 
    if( iframe.readyState=="complete" ) {
           textarea.focus();
    } else {
        setTimeout(ieIframeReadyHandler, 100);
    }
}


setTimeout(ieIframeReadyHandler, 100);

Note: I dont listen to the readystatechanged event of the iframe since it doesnt seem to fire for the readyState=="complete" case!!

So what happens when this code executes?..... Well nothing. The Iframe pdf is still focused, however if I check which element has focus using document.activeElement (previously this was IE only, howvever firefox 3 now supports this) I am informed that the textarea DOES have focus!!

What the hell??!?

Any ideas?

flag

45% accept rate
What is the DOM type of the IFRAME (file postfix...) – Itay Moav Apr 24 at 15:17
Not sure what you mean by type of the iframe? type isnt a property of the DOM element for internet explorer as far as I can see. Do you mean doc type of the contents? I point at the pdf by setting the src property... – ListenToRick Apr 24 at 15:34

2 Answers

vote up 1 vote down

Try to delay setting focus by 200-500 msec. It's quite common IE issue.

EDIT:

Use onLoad event in IFRAME:

<body onLoad="parent.window.check_focus()"> .... </body>
link|flag
The IFrame will contain only the PDF content, not HTML. So, you'll not be able to hook up the body's onload event. – Kirtan May 4 at 8:04
@Kirtan: It's better to incorporate it into <body> element. Read comments on the next answer. – Thevs May 4 at 10:07
vote up 0 vote down

In Internet Explorer, the iframe's readystate property only updates within the iframe, not outside of it. It's by design, for whatever reason. There's no reliable way, from outside the iframe, to determine whether the iframe contents have loaded.

If it's not critical that the iframe be displayed immediately on page load, you could simply wait to load it until the user requests it (via a link or button). That way they're expecting it.

Another alternative if the PDFs are hosted locally (or you don't mind doing some caching) is to use Flash and a tool like PDF2SWF from SWFTools to do a conversion on the back-end.

link|flag
I used iframes in pre-AJAX times, and there's absolutely no problem to set handler for iframe's onLoad event from whatever other window (using 'parent' property). F.e: <body onLoad="parent.window.check_load()" ... – Thevs Apr 30 at 6:54
Setting onLoad for the body element of an HTML doc within an iframe is not the same as setting it for the iframe itself. Unless I'm misunderstanding you? In the case of ListenToRick's problem, the content within the iframe is a PDF, thus there's no body element to set an event on. – Steven Richards Apr 30 at 7:22
the readyState property does change and is accessible by the parent js - i have demonstrated this above! – ListenToRick Apr 30 at 13:21
So I am able to successfully call .focus on the textbox when the iframe is in a readyState="complete" state and as I mentioned above, the parent page does actually believe the textbox is the focused element for the parent page. Perhaps the parent page itself isnt focused? – ListenToRick Apr 30 at 13:24
The problem in this case is that readystate is wrong. Try loading a large PDF (50mb or so). The readystate of the iframe will be set to 'complete' in less than a second, but the PDF has not finished loading yet! The order of events seems to be: 1) Plugin loaded (readystate is 'complete'), 2) Plugin finishes downloading first page (focus on iframe is set), 3) Plugin continues downloading rest of document. If you set focus between 1 and 2, it will be lost again immediately in most cases. If you use a longer delay as Thevs indicated, it will work correctly provided the plugin is loaded in time. – Steven Richards Apr 30 at 20:00
show 7 more comments

Your Answer

Get an OpenID
or

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