vote up 0 vote down star
1

I have a iFrame content which is having inside another iFrame. I want to get inside iFrame src content. how can i do this using javascript?

flag

73% accept rate
Is what you're trying to do allowed by the same-origin rule? – derobert Aug 12 at 6:51
what i am expecting is if i have an iframe inside another iframe then how can get the inner iframe's src? – paulrajj Aug 12 at 7:18
Is the page in the inner iframe on the same host as your page? – Gareth Aug 12 at 7:21
yes. both the pages are in same host and same root. – paulrajj Aug 12 at 7:32
Are you asking for the value of the src attribute or the value of the contents of the page? – Shane Tomlinson Aug 12 at 19:11
show 1 more comment

2 Answers

vote up 0 vote down check

The outer page:

<html>
<body>
<iframe id="ifr1" src="page1.htm"></iframe>
<iframe id="ifr2" src="http://www.google.com"></iframe>
</body>
</html>

page1.htm:

<html>
<body>
<script type="text/javascript">
document.write(parent.document.getElementById('ifr2').src);
</script>
</body>
</html>
link|flag
i cant get my actual result, but may this answer helpful to me.. thanks.. – paulrajj Aug 12 at 11:19
vote up 0 vote down

iframeInstance.contentWindow.document - this document loaded from SRC url. and vice verse - to get from inner document to parent use: parent.document

link|flag
i got src of outer iframe. if i want the inner iframe src how can i get ? can u pls give me an example regarding my question ? thanks. – paulrajj Aug 12 at 7:08

Your Answer

Get an OpenID
or

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