Reputation: 81
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
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