KraNK A
KraNK A

Reputation: 1

External Links in iFrame?

Is it possible to make links in an iframe open in a new window? And if so how would I go about doing this? I'm sure there's going to be more than one method so if you can post as many as possible. Thanks.

Upvotes: 0

Views: 213

Answers (1)

John Bachir
John Bachir

Reputation: 22751

The same way as if it wasn't in an iframe, with target="_blank"

<a href="http://example.com/" target="_blank">Foo Bar</a>

Upvotes: 3

Related Questions