michaellunsford Posted May 18, 2009 Share Posted May 18, 2009 Not sure where to post this - I'm guessing javascript is one way to do it, so here I am. Imagine google image search, you click the image, it loads the image in the top frame and the web page that contains that image appears in the bottom frame. That's exactly what another website is doing by loading our content in a frame they have branded for themselves. I'm thinking this be detected and the page can reloaded without the frame. How to detect this, though, is the problem. Quote Link to comment Share on other sites More sharing options...
michaellunsford Posted May 18, 2009 Author Share Posted May 18, 2009 got it <script type="text/javascript"> if(top.frames.length>0) { top.frames.location = 'http://example.com'; } </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.