Open link in iframe?

Viewed 18

How can I make it so that when I click on another page in an iframed it opens within the iframe? I own both the website being iframed and the site with the iframe, so if I need to do something with the configuration of either that is fine. Thanks for your time!

1 Answers

That is the default behaviour.

So don't:

  • Use JavaScript to trigger non-standard link behaviour
  • Use a target attribute on the link
  • Use a target attribute on a <base> element
  • Use an CSP to block the page from being loaded in a frame
  • Use an X-Frame-Options header to block the page from being loaded in a frame
Related