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.<
If your iframe is from another domain, (cross domain), the other answers are not going to help you... you will simply need to use this:
var currentUrl = document.referrer;
and - here you've got the main url!