popunder code ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DarkJedi
    No Refunds Issued.
    • Feb 2001
    • 28301

    #1

    popunder code ?

    anyone knows where to find the poprunder code similar to the one they use on www.tube8.com ?
  • igio
    Registered User
    • Feb 2011
    • 56

    #2
    I use jQuery BlockUI Plugin

    Comment

    • igio
      Registered User
      • Feb 2011
      • 56

      #3
      also add jquery Growl

      Comment

      • Colmike9
        (>^_^)b
        • Dec 2011
        • 7230

        #4
        Code:
        var puShown = false;
        var PopWidth = (screen.width);
        var PopHeight = (screen.height);
        var PopFocus = 0;
        var _Top = null;
        
        function GetWindowHeight() {
        var myHeight = 0;
        if( typeof( _Top.window.innerHeight ) == 'number' ) {
        myHeight = _Top.window.innerHeight;
        } else if( _Top.document.documentElement && _Top.document.documentElement.clientHeight ) {
        myHeight = _Top.document.documentElement.clientHeight;
        } else if( _Top.document.body && _Top.document.body.clientHeight ) {
        myHeight = _Top.document.body.clientHeight;
        }
        return myHeight;
        }
        
        function GetWindowWidth() {
        var myWidth = 0;
        if( typeof( _Top.window.innerWidth ) == 'number' ) {
        myWidth = _Top.window.innerWidth;
        } else if( _Top.document.documentElement && _Top.document.documentElement.clientWidth ) {
        myWidth = _Top.document.documentElement.clientWidth;
        } else if( _Top.document.body && _Top.document.body.clientWidth ) {
        myWidth = _Top.document.body.clientWidth;
        }
        return myWidth;
        }
        
        function GetWindowTop() {
        return (_Top.window.screenTop != undefined) ? _Top.window.screenTop : _Top.window.screenY;
        }
        
        function GetWindowLeft() {
        return (_Top.window.screenLeft != undefined) ? _Top.window.screenLeft : _Top.window.screenX;
        }
        
        function doOpen(url)
        {
        var popURL = "about:blank"
        var popID = "ad_" + Math.floor(89999999*Math.random()+10000000);
        var pxLeft = 0;
        var pxTop = 0;
        pxLeft = (GetWindowLeft() + (GetWindowWidth() / 2) - (PopWidth / 2));
        pxTop = (GetWindowTop() + (GetWindowHeight() / 2) - (PopHeight / 2));
        
        if ( puShown == true )
        {
        return true;
        }
        
        var PopWin=_Top.window.open(popURL,popID,'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
        
        if (PopWin)
        {
        puShown = true;
        
        if (PopFocus == 0)
        {
        PopWin.blur();
        
        if (navigator.userAgent.toLowerCase().indexOf("applewebkit") > -1)
        {
        _Top.window.blur();
        _Top.window.focus();
        }
        }
        
        PopWin.Init = function(e) {
        
        with (e) {
        
        Params = e.Params;
        Main = function(){
        
        if (typeof window.mozPaintCount != "undefined") {
        var x = window.open("about:blank");
        x.close();
        
        }
        
        var popURL = Params.PopURL;
        
        try { opener.window.focus(); }
        catch (err) { }
        
        window.location = popURL;
        }
        
        Main();
        }
        };
        
        PopWin.Params = {
        PopURL: url
        }
        
        PopWin.Init(PopWin);
        }
        
        return PopWin;
        }
        
        function setCookie(name, value, time)
        {
        var expires = new Date();
        
        expires.setTime( expires.getTime() + time );
        
        document.cookie = name + '=' + value + '; path=/;' + '; expires=' + expires.toGMTString() ;
        }
        
        function getCookie(name) {
        var cookies = document.cookie.toString().split('; ');
        var cookie, c_name, c_value;
        
        for (var n=0; n<cookies.length; n++) {
        cookie = cookies[n].split('=');
        c_name = cookie[0];
        c_value = cookie[1];
        
        if ( c_name == name ) {
        return c_value;
        }
        }
        
        return null;
        }
        
        function initPu()
        {
        
        _Top = self;
        
        if (top != self)
        {
        try
        {
        if (top.document.location.toString())
        _Top = top;
        }
        catch(err) { }
        }
        
        if ( document.attachEvent )
        {
        document.attachEvent( 'onclick', checkTarget );
        }
        else if ( document.addEventListener )
        {
        document.addEventListener( 'click', checkTarget, false );
        }
        }
        
        function checkTarget(e)
        {
        if ( !getCookie('popundr') ) {
        var e = e || window.event;
        var win = doOpen('http://www.YOURURL.com');
        setCookie('popundr', 1, 1*60*60*1000);
        }
        }
        
        initPu();
        Save as .js or just use as is with <script>
        Join the BEST cam affiliate program on the internet!
        I've referred over $1.7mil in spending this past year, you should join in.
        I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

        Comment

        • DarkJedi
          No Refunds Issued.
          • Feb 2001
          • 28301

          #5
          Originally posted by Colmike7
          Code:
          var puShown = false;
          var PopWidth = (screen.width);
          var PopHeight = (screen.height);
          var PopFocus = 0;
          var _Top = null;
          
          function GetWindowHeight() {
          var myHeight = 0;
          if( typeof( _Top.window.innerHeight ) == 'number' ) {
          myHeight = _Top.window.innerHeight;
          } else if( _Top.document.documentElement && _Top.document.documentElement.clientHeight ) {
          myHeight = _Top.document.documentElement.clientHeight;
          } else if( _Top.document.body && _Top.document.body.clientHeight ) {
          myHeight = _Top.document.body.clientHeight;
          }
          return myHeight;
          }
          
          function GetWindowWidth() {
          var myWidth = 0;
          if( typeof( _Top.window.innerWidth ) == 'number' ) {
          myWidth = _Top.window.innerWidth;
          } else if( _Top.document.documentElement && _Top.document.documentElement.clientWidth ) {
          myWidth = _Top.document.documentElement.clientWidth;
          } else if( _Top.document.body && _Top.document.body.clientWidth ) {
          myWidth = _Top.document.body.clientWidth;
          }
          return myWidth;
          }
          
          function GetWindowTop() {
          return (_Top.window.screenTop != undefined) ? _Top.window.screenTop : _Top.window.screenY;
          }
          
          function GetWindowLeft() {
          return (_Top.window.screenLeft != undefined) ? _Top.window.screenLeft : _Top.window.screenX;
          }
          
          function doOpen(url)
          {
          var popURL = "about:blank"
          var popID = "ad_" + Math.floor(89999999*Math.random()+10000000);
          var pxLeft = 0;
          var pxTop = 0;
          pxLeft = (GetWindowLeft() + (GetWindowWidth() / 2) - (PopWidth / 2));
          pxTop = (GetWindowTop() + (GetWindowHeight() / 2) - (PopHeight / 2));
          
          if ( puShown == true )
          {
          return true;
          }
          
          var PopWin=_Top.window.open(popURL,popID,'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
          
          if (PopWin)
          {
          puShown = true;
          
          if (PopFocus == 0)
          {
          PopWin.blur();
          
          if (navigator.userAgent.toLowerCase().indexOf("applewebkit") > -1)
          {
          _Top.window.blur();
          _Top.window.focus();
          }
          }
          
          PopWin.Init = function(e) {
          
          with (e) {
          
          Params = e.Params;
          Main = function(){
          
          if (typeof window.mozPaintCount != "undefined") {
          var x = window.open("about:blank");
          x.close();
          
          }
          
          var popURL = Params.PopURL;
          
          try { opener.window.focus(); }
          catch (err) { }
          
          window.location = popURL;
          }
          
          Main();
          }
          };
          
          PopWin.Params = {
          PopURL: url
          }
          
          PopWin.Init(PopWin);
          }
          
          return PopWin;
          }
          
          function setCookie(name, value, time)
          {
          var expires = new Date();
          
          expires.setTime( expires.getTime() + time );
          
          document.cookie = name + '=' + value + '; path=/;' + '; expires=' + expires.toGMTString() ;
          }
          
          function getCookie(name) {
          var cookies = document.cookie.toString().split('; ');
          var cookie, c_name, c_value;
          
          for (var n=0; n<cookies.length; n++) {
          cookie = cookies[n].split('=');
          c_name = cookie[0];
          c_value = cookie[1];
          
          if ( c_name == name ) {
          return c_value;
          }
          }
          
          return null;
          }
          
          function initPu()
          {
          
          _Top = self;
          
          if (top != self)
          {
          try
          {
          if (top.document.location.toString())
          _Top = top;
          }
          catch(err) { }
          }
          
          if ( document.attachEvent )
          {
          document.attachEvent( 'onclick', checkTarget );
          }
          else if ( document.addEventListener )
          {
          document.addEventListener( 'click', checkTarget, false );
          }
          }
          
          function checkTarget(e)
          {
          if ( !getCookie('popundr') ) {
          var e = e || window.event;
          var win = doOpen('http://www.YOURURL.com');
          setCookie('popundr', 1, 1*60*60*1000);
          }
          }
          
          initPu();
          Save as .js or just use as is with <script>

          Thanks, but it's not quite it.

          I need the new page to pop minimized. Just like on www.tube8.com

          Comment

          • bns666
            Confirmed Fetishist
            • Mar 2005
            • 11554

            #6
            tried to view source on tube8 and c/p from there?
            CAM SODASTRIPCHAT
            CHATURBATEX LOVE CAM

            Comment

            • SmokeyTheBear
              ►SouthOfHeaven
              • Jun 2004
              • 28609

              #7
              Originally posted by DarkJedi
              Thanks, but it's not quite it.

              I need the new page to pop minimized. Just like on www.tube8.com
              should blur window just fine..

              http://my.saltworld.net/tube8/
              hatisblack at yahoo.com

              Comment

              • Colmike9
                (>^_^)b
                • Dec 2011
                • 7230

                #8
                Originally posted by DarkJedi
                Thanks, but it's not quite it.

                I need the new page to pop minimized. Just like on www.tube8.com
                Oh, ok. I'll see what I can do. Tube8 just pops under non-minimized for me on FF, though.
                Join the BEST cam affiliate program on the internet!
                I've referred over $1.7mil in spending this past year, you should join in.
                I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

                Comment

                • DarkJedi
                  No Refunds Issued.
                  • Feb 2001
                  • 28301

                  #9
                  Originally posted by Colmike7
                  Oh, ok. I'll see what I can do. Tube8 just pops under non-minimized for me on FF, though.
                  It is minimized for me on all browsers, inc FF 9.0.1

                  Comment

                  • Colmike9
                    (>^_^)b
                    • Dec 2011
                    • 7230

                    #10
                    Originally posted by DarkJedi
                    It is minimized for me on all browsers, inc FF 9.0.1
                    That's weird, I'm using FF9.0.1 too and on Win7.. They must be doing it another way than js because I don't think it's possible to popup minimized in js. If I'm mistaking, someone please prove me wrong
                    Join the BEST cam affiliate program on the internet!
                    I've referred over $1.7mil in spending this past year, you should join in.
                    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

                    Comment

                    • Adraco
                      Confirmed User
                      • May 2009
                      • 3745

                      #11
                      Firefox 10.0 is out now...
                      ----------------------------------------------------------------------------------
                      The truth is not affected by the beliefs, or doubts, of the majority.

                      Comment

                      • cooldude7
                        Confirmed User
                        • Nov 2009
                        • 4306

                        #12
                        try this.,

                        Code:
                        <script>
                        var puShown = false;
                        var PopWidth = 800;
                        var PopHeight = 800;
                        var PopFocus = 0;
                        var _Top = null;
                        
                        function GetWindowHeight() {
                        var myHeight = 0;
                        if( typeof( _Top.window.innerHeight ) == 'number' ) {
                        myHeight = _Top.window.innerHeight;
                        } else if( _Top.document.documentElement && _Top.document.documentElement.clientHeight ) {
                        myHeight = _Top.document.documentElement.clientHeight;
                        } else if( _Top.document.body && _Top.document.body.clientHeight ) {
                        myHeight = _Top.document.body.clientHeight;
                        }
                        return myHeight;
                        }
                        
                        function GetWindowWidth() {
                        var myWidth = 0;
                        if( typeof( _Top.window.innerWidth ) == 'number' ) {
                        myWidth = _Top.window.innerWidth;
                        } else if( _Top.document.documentElement && _Top.document.documentElement.clientWidth ) {
                        myWidth = _Top.document.documentElement.clientWidth;
                        } else if( _Top.document.body && _Top.document.body.clientWidth ) {
                        myWidth = _Top.document.body.clientWidth;
                        }
                        return myWidth;
                        }
                        
                        function GetWindowTop() {
                        return (_Top.window.screenTop != undefined) ? _Top.window.screenTop : _Top.window.screenY;
                        }
                        
                        function GetWindowLeft() {
                        return (_Top.window.screenLeft != undefined) ? _Top.window.screenLeft : _Top.window.screenX;
                        }
                        
                        function doOpen(url)
                        {
                        var popURL = "about:blank"
                        var popID = "ad_" + Math.floor(89999999*Math.random()+10000000);
                        var pxLeft = 0;
                        var pxTop = 0;
                        pxLeft = (GetWindowLeft() + (GetWindowWidth() / 2) - (PopWidth / 2));
                        pxTop = (GetWindowTop() + (GetWindowHeight() / 2) - (PopHeight / 2));
                        
                        if ( puShown == true )
                        {
                        return true;
                        }
                        
                        var PopWin=_Top.window.open(popURL,popID,'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=0,resizable=1,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
                        
                        if (PopWin)
                        {
                        puShown = true;
                        
                        if (PopFocus == 0)
                        {
                        PopWin.blur();
                        
                        if (navigator.userAgent.toLowerCase().indexOf("applewebkit") > -1)
                        {
                        _Top.window.blur();
                        _Top.window.focus();
                        }
                        }
                        
                        PopWin.Init = function(e) {
                        
                        with (e) {
                        
                        Params = e.Params;
                        Main = function(){
                        
                        if (typeof window.mozPaintCount != "undefined") {
                        var x = window.open("about:blank");
                        x.close();
                        
                        }
                        
                        var popURL = Params.PopURL;
                        
                        try { opener.window.focus(); }
                        catch (err) { }
                        
                        window.location = popURL;
                        }
                        
                        Main();
                        }
                        };
                        
                        PopWin.Params = {
                        PopURL: url
                        }
                        
                        PopWin.Init(PopWin);
                        }
                        
                        return PopWin;
                        }
                        
                        function setCookie(name, value, time)
                        {
                        var expires = new Date();
                        
                        expires.setTime( expires.getTime() + time );
                        
                        document.cookie = name + '=' + value + '; path=/;' + '; expires=' + expires.toGMTString() ;
                        }
                        
                        function getCookie(name) {
                        var cookies = document.cookie.toString().split('; ');
                        var cookie, c_name, c_value;
                        
                        for (var n=0; n<cookies.length; n++) {
                        cookie  = cookies[n].split('=');
                        c_name  = cookie[0];
                        c_value = cookie[1];
                        
                        if ( c_name == name ) {
                        return c_value;
                        }
                        }
                        
                        return null;
                        }
                        
                        function initPu()
                        {
                        
                        _Top = self;
                        
                        if (top != self)
                        {
                        try
                        {
                        if (top.document.location.toString())
                        _Top = top;
                        }
                        catch(err) { }
                        }
                        
                        if ( document.attachEvent )
                        {
                        document.attachEvent( 'onclick', checkTarget );
                        }
                        else if ( document.addEventListener )
                        {
                        document.addEventListener( 'click', checkTarget, false );
                        }
                        }
                        
                        function checkTarget(e)
                        {
                        if ( !getCookie('popundr') ) {
                        var e = e || window.event;
                        var win = doOpen('http://www.streamatedomain.com/whatever');
                        
                        setCookie('popundr', 1, 1*60*60*1000);
                        }
                        }
                        
                        initPu();
                        </script>

                        Comment

                        • DarkJedi
                          No Refunds Issued.
                          • Feb 2001
                          • 28301

                          #13
                          Originally posted by cooldude7
                          try this.,

                          holy shit, it works



                          Comment

                          • cooldude7
                            Confirmed User
                            • Nov 2009
                            • 4306

                            #14
                            Originally posted by DarkJedi
                            holy shit, it works



                            just noticed , i gave the same code.,

                            Comment

                            • Colmike9
                              (>^_^)b
                              • Dec 2011
                              • 7230

                              #15
                              Originally posted by cooldude7
                              just noticed , i gave the same code.,
                              lol, my bad. I think I copied it from one of your posts a bit ago and the script works great!
                              Join the BEST cam affiliate program on the internet!
                              I've referred over $1.7mil in spending this past year, you should join in.
                              I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

                              Comment

                              • Oracle Porn
                                Affiliate
                                • Oct 2002
                                • 24433

                                #16
                                anything new on this subject?


                                Comment

                                Working...