Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to get notified whenever a user clicks a link on a page in an iframe that is not from the same domain. I'm aware of xss restrictions, however all i need to know is the current page being served in the Iframe. Is there a way to do this without violating xss rules?

share|improve this question

3 Answers

up vote 2 down vote accepted

If not for cross-site scripting restrictions this should work. Unfortunately I don't know of a way to get the URL without violating these restrictions.

<html>
    <head>
    	<script type="text/javascript">
    		function GetIFrameUrl()
    		{
    			alert('url = ' + document.frames['frame1'].location.href);
    		}
    	</script>
    </head>
    <body>
    	<a href="#" onclick="GetIFrameUrl();">Find the iFrame URL</a>
    	<iframe name="frame1" src="http://www.google.com" width="100%" height="400"></iframe>
    </body>
</html>
share|improve this answer
Does this viloate xss rules? – Micah Apr 14 '09 at 18:25
1  
Yes, it does. I don't believe there is a way to do what you need without violating the rules. – silent__thought Apr 15 '09 at 5:40
In firefox in firebug all I get is document.frames is undefined – OZZIE Apr 29 at 14:03

To get the iframe location using jquery:

alert( $('iframeId').contents().get(0).location.href );

share|improve this answer
this doesn't work for me – knocte Mar 25 '12 at 23:23
Thanks it works! – Kevin Vella Jun 12 '12 at 13:15

alert($('#iframe-id').attr('src')); works for me

share|improve this answer
4  
this doesn't work if the iframe's src is changed dynamically. it will report the original src value. – davehale23 Oct 8 '12 at 20:40

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.