I tried to do it with iframes but when I click a link in the child wesite then it leaves the parent website
how can I keep the parent website but still interact with the child website?

Recommended Answers

All 2 Replies

most likely cause is that the links in your iframe have a target="_top" attribute

If the child site is not yours, it has a framebreaker,
something like

   <script defer='defer' type='text/javascript'>
    <!--//
    if (window != top) { 
     if (top.location.href.indexOf("translate") < 0) {
      top.location.replace(self.location.href);
     } 
    }
    //-->
    </script>

Doesnt break valid reason for a frame, google translate

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.