user1209945
user1209945

Reputation: 81

Open links from an external website that sits in an Iframe in a new window

I have a website with an iframe on one page that goes to an external URL (which I have no control over). I am trying to find a way to have all the links in the Iframe (not the entire page) open in a new window. I've tried a couple solutions with no luck. Is there a way I can target the iframe and use the HTML base tag?

Upvotes: 0

Views: 755

Answers (1)

Mooseman
Mooseman

Reputation: 18891

Due to the Same Origin Policy, you can only modify the contents of an iframe if the domains and protocols match.

Upvotes: 1

Related Questions