views:

51

answers:

1

Hi,

How to get Iframe's parent window url using jquery or javascript?

Thanks in advance

+1  A: 

For script running in the iframe, use parent.location.href, although an iframe served from a different domain to its parent page will not be able to access this.

Tim Down