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

Okay, I have a page on and on this page I have an iframe. What I need to do is on the iframe page, find out what the url of the main page is.

I have searched around and I know that this is not possible if my iframe page is on a different domain, as that is cross-site scripting. But everywhere I've read says that if iframe page is on the same domain as the parent page, it should work if I do for instance:

parent.document.location

parent.window.document.location

parent.window.location

parent.document.location.href

or other similar combos, as there seems to be multiple ways to get the same info.
Anyways, so here's the problem. My iframe is on the same domain as the main page, but it is not on the same SUB domain. So for instance I have

http:// www.mysite.com/pageA.html

and then my iframe url is

http:// qa-www.mysite.com/pageB.html

When I try to grab the url from pageB.html (the iframe page), I keep getting the same access denied error. So it appears that even sub-domains count as cross-site scripting, is that correct, or am I doing something wrong?

share|improve this question

10 Answers

up vote 3 down vote accepted

You're correct. Subdomains are still considered separate domains when using iframes, so you the iframe and the main page can never interact with each other.

share|improve this answer
Okay well that just blows. But at least I know I'm not going crazy :( ah well, plan B. thanks. (and sorry about not putting my stuff in tags, thanks for the edit) – chronofwar Aug 5 '10 at 23:55

Yes, accessing parent page's URL is not allowed if the iframe and the main page are not in the same (sub)domain. However, if you just need URL of the main page (i.e. the browser URL), you can try this

var url = (window.location != window.parent.location) ? document.referrer: document.location;

I was struggling with the same issue and got this solution from other source. Worked for me.

share|improve this answer
2  
Returns me s-static.ak.facebook.com/platform/page_proxy.php?v=5, any other idea? – jepser Oct 9 '12 at 5:41

I just discovered a workaround for this problem that is so simple, and yet I haven't found any discussions anywhere that mention it.

In your iFrame, you call the src="http://www.mydomain.com/mypage.php"

Well, instead, use a javascript to build your iframe, and get the parent url through javascript, and send it as a url variable in the querystring of your src target, like so:

<script type="text/javascript">url = parent.document.URL; document.write('<iframe src="http://myotherdomain.com/mydata/mydatacollectionscript.php?url=' + url + '"></iframe>');</script>

Then, find yourself a javascript url variable function that parses the url string to get the url variable you are after, in this case it's "url".

I found a great url string parser here: http://www.netlobo.com/url_query_string_javascript.html

share|improve this answer

For pages on the same domain and different subdomain, you can set the document.domain property via javascript.

Both the parent frame and the iframe need to set their document.domain to something that is common betweeen them.

i.e. www.foo.mydomain.com and api.foo.mydomain.com could each use either foo.mydomain.com or just mydomain.com and be compatible (no, you can't set them both to com, for security reasons...)

also, note that document.domain is a one way street. Consider running the following three statements in order:

// assume we're starting at www.foo.mydomain.com
document.domain = "foo.mydomain.com" // works
document.domain = "mycomaind.com" // works
document.domain = "foo.mydomain.com" // throws a security exception

Modern browsers can also use window.postMessage to talk across origins, but it won't work in IE6. https://developer.mozilla.org/en/DOM/window.postMessage

share|improve this answer

Although already replied in the last comment, there is this link saying the same, it might help somebody:

http://madskristensen.net/post/Iframe-cross-domain-JavaScript-calls.aspx

share|improve this answer

I've had issues with this. If using a language like php when your page first loads in the iframe grab $_SERVER['HTTP_REFFERER'] and set it to a session variable.

This way when the page loads in the iframe you know the full parent url and query string of the page that loaded it. With cross browser security it's a bit of a headache counting on window.parent anything if you you different domains.

share|improve this answer

I couldnt get previous solution to work but I found out that if I set the iframe scr with for example http:otherdomain.com/page.htm?from=thisdomain.com/thisfolder then I could, in the iframe extract thisdomain.com/thisfolder by using following javascript:

var myString = document.location.toString();
var mySplitResult = myString.split("=");
fromString = mySplitResult[1];
share|improve this answer

If your iframe is from another domain, (cross domain), you will simply need to use this:

var currentUrl = document.referrer;

and - here you've got the main url!

share|improve this answer

The problem with the PHP $_SERVER['HTTP_REFFERER'] is that it gives the fully qualified page url of the page that brought you to the parent page. That's not the same as the parent page, itself. Worse, sometimes there is no http_referer, because the person typed in the url of the parent page. So, if I get to your parent page from yahoo.com, then yahoo.com becomes the http_referer, not your page.

share|improve this answer

I've found in the cases where $_SERVER['HTTP_REFERER'] doesn't work (I'm looking at you, Safari), $_SERVER['REDIRECT_SCRIPT_URI'] has been a useful backup.

share|improve this answer

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.