Reputation: 5432
I have a page that people load in an iframe (its like a widget they can put on their pages) and I want to see which pages are loading it... is this possible?
Upvotes: 0
Views: 48
Reputation: 349032
No, that's not reliably possible due to the Same origin policy.
(You would have to read the value of parent
.location.href
, which is not possible.)
Upvotes: 1