prevent loading site inframes

Discussion in 'JavaScript' started by trichnosis, Aug 30, 2007.

  1. #1
    Hi;

    Is it possible to prevent people to load my site in frames?

    is there a javascript code for that?

    Thanks for the help
     
    trichnosis, Aug 30, 2007 IP
  2. bibel

    bibel Active Member

    Messages:
    289
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #2
    if (self != top)
    {
    top.location.href = self.location.href;
    }
     
    bibel, Aug 31, 2007 IP
  3. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #3
    I'm using a similar code:
    
    if ( top.frames.length!=0 )
      top.location = self.document.location;
    
    Code (markup):
     
    ajsa52, Aug 31, 2007 IP