Is there a simple way to get the current URL from an iframe?
The viewer would going through multiple sites. I'm guessing I would be using something in javascript.
Is there a simple way to get the current URL from an iframe?
The viewer would going through multiple sites. I'm guessing I would be using something in javascript.
For security reasons, you can't get the URL if the user has navigated the iframe away from the initial page and the iframe contents aren't within the same domain with the parent page. Within the same domain, you can get the URL with something like
document.getElementById("iframe_id").contentWindow.location.href
See also answers to a similar question.