Iframes javascript breaker

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • teomaxxx
    Confirmed User
    • May 2003
    • 2737

    #1

    Iframes javascript breaker

    Does anyone have javascript code for breaking iframes?
    (when my site is loaded within iframe, i would like to break it)
  • psili
    Confirmed User
    • Apr 2003
    • 5526

    #2
    this.location = top.location.href

    or some shit like that.
    Your post count means nothing.

    Comment

    • adultchica
      Confirmed User
      • Sep 2005
      • 5141

      #3
      http://javascript.internet.com/page-...ak-frames.html

      Right there! :-)

      Comment

      • BoyAlley
        So Fucking Gay
        • Nov 2004
        • 19714

        #4
        Put this between your head tags:

        Code:
        <script language="JavaScript" type="text/javascript">
        <!--
        function breakout_of_frame() {
          if (top.location != location) {
            top.location.href = document.location.href ;
          }
        }
        -->
        </script>
        Here's your body tag:

        Code:
        <body onload='breakout_of_frame()'>

        Comment

        Working...