vote up 0 vote down star

AFAIK,I can achieve this goal by window.frames['frame_name']

but if I only know frame_id,is it possible to get the content too?

You can try it out here:

http://maishudi.com/rte-light-read-only/index.html

btw,is it possible to get location attribute through iframe_id?

I tried long ago but failed.

flag

40% accept rate

1 Answer

vote up 0 vote down

I think this should do it. It works on (the latest) firefox, safari, camino and opera (mac).
You should still do some testing though (especially in IE)

var iframeObj = document.getElementById("theIframeId");
var documentObj = iframeObj.contentWindow || iframeObj.contentDocument;
var location = documentObj.location.href; // I think this only works if
                                          // the content of the iframe comes 
                                          // from the same domain.
link|flag
I've tested it's not working. You can test it here : maishudi.com/rte-light-read-only/index.html/… using : var iframeObj = document.getElementById("id_description"); var documentObj = iframeObj.contentWindow || iframeObj.contentDocument; alert(documentObj) ; – Shore May 20 at 10:33
I did some (local) tests and it works as expected. – andi May 20 at 10:45
maybe IE? It failed in firefox. – Shore May 20 at 10:51
did you wrap it in an load event? tinyurl.com/oy48ul - does this work? – andi May 20 at 11:12
no,i just run that code in console of firebug. – Shore May 20 at 12:01
show 5 more comments

Your Answer

Get an OpenID
or

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