Blog IT

To open the link from <iframe> in the parent window, you can use the <base> tag and set the target attribute to _parent in the <head> section.

<!DOCTYPE html>
<html>
  <head>
    <title>How to Open a Link From <iframe> in the Parent Window</title>
    <base href="http://blog-it.tn/" target="_parent">
  </head>
  <body>
    <iframe src="http://blog-it.tn/" width="500" height="500"></iframe>
  </body>
</html>