Anyone know how to prevent a site from being displayed in a frame?

Discussion in 'JavaScript' started by marty, Mar 8, 2006.

  1. #1
    Hello All,

    I want to make sure that my website isn't placed in someone elses frame? Does anyone know how to prevent this?

    Thanks,

    Marty
     
    marty, Mar 8, 2006 IP
  2. TheHoff

    TheHoff Peon

    Messages:
    1,530
    Likes Received:
    130
    Best Answers:
    0
    Trophy Points:
    0
    #2
    
    <script language="javascript" type="text/javascript">
    
    if (window != parent) parent.location.href = "http://www.locationofyoursite.com/";
    
    </script>
    
    Code (markup):
     
    TheHoff, Mar 8, 2006 IP
  3. marty

    marty Peon

    Messages:
    154
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks hofster... I am putting that in now :)
     
    marty, Mar 8, 2006 IP
  4. hdogan

    hdogan Peon

    Messages:
    316
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Another way:
    <script language="JavaScript">
    <!--
    if (top != self) {
      if (top.location)
        top.location.replace(self.location.href);
      else
        top.document.location.replace(self.document.location.href);
    }
    //-->
    </script>
    Code (markup):
     
    hdogan, Mar 17, 2006 IP
    marty likes this.
  5. marty

    marty Peon

    Messages:
    154
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks hdogan - that's a great solution. This will work even when the URL changes.
     
    marty, Mar 17, 2006 IP
  6. bahund

    bahund Guest

    Messages:
    1
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    If your page is landing in an iframe, and you're trying to escape that iframe so that you're page fills the entire "parent" window, you can use the following javascript:

    if( self != top )
    {
    top.location.replace(self.location.href);
    }

    Hope this helps!
     
    bahund, Mar 23, 2006 IP
    marty likes this.
  7. marty

    marty Peon

    Messages:
    154
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #7
    That's awesome... Thank You.
     
    marty, Mar 24, 2006 IP