Jey
Jey

Reputation: 1511

Open link in a tab from chrome extension's iframe

I have developed a pop up extension for google chrome. I have added an iframe in that popup. Now when i try to open a link from that iframe.. its not working.. its not even working within the iframe itself. i need the links in iframe to be opened in a new tab.

I tried writing some scripts which can change href in a to be opened in a new tab or in the same tab. But how to do that for an iframe.

Note: The page loaded in iframe is in my control and can be changed if needed.

Upvotes: 0

Views: 1067

Answers (1)

serg
serg

Reputation: 111275

Put <base target="_blank"/> into <head> of that iframe. You can also mark individual links with target="_blank".

Upvotes: 1

Related Questions