Good Pop Under Code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TheSwed
    Confirmed User
    • Feb 2004
    • 3483

    #1

    Good Pop Under Code

    Need a code that actually works?

    Cheap Viagra and Cialis Erectionpills
  • hdbuilder
    Confirmed User
    • Jun 2012
    • 1338

    #2
    <SCRIPT>
    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,sc rollbars=1,location=1,statusbar=1,menubar=1,resiza ble=1,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
    if (PopWin)
    {
    puShown = true;
    if (PopFocus == 0)
    {
    PopWin.blur();
    if (navigator.userAgent.toLowerCase().indexOf("applew ebkit") > -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://POPUPURL.com');
    setCookie('popundr', 1, 1*60*60*1000);
    }
    }
    initPu();
    </script>

    ROBO SCRIPTS | WP CAM PLUGIN - Scripts To Promote Cam Sites - Chaturbate, BongaCams, Streamate, LiveJasmin, Stripchat...

    The Cam Site Builder, The Cam Multi Site Builder -> MULTIPLE CAM SITES IN ONE

    Comment

    • hdbuilder
      Confirmed User
      • Jun 2012
      • 1338

      #3
      Or this one works also:

      <script type="text/javascript">
      var puShown = false;

      function doOpen(url)
      {
      if ( puShown == true )
      {
      return true;
      }
      var wFeatures = "toolbar=0,statusbar=1,resizable=1,scrollbars=1,me nubar=1,location=1,directories=0";
      if(navigator.userAgent.indexOf('Chrome') != -1){
      wFeatures = "scrollbar=yes";
      }
      pu_window= window.open('about:blank','wmPu',wFeatures + ',height=700,width=1014');

      var regex = new RegExp(/rv:[2-9]/);
      if (regex.exec(navigator.userAgent)) {
      pu_window.ljPop = function (jsm_url) {

      if (regex.exec(navigator.userAgent)) { // Gecko 2+
      this.window.open('about:blank').close();
      }
      this.document.location.href = url;
      };
      pu_window.ljPop(url);
      }
      else {
      pu_window.document.location.href = url;
      }
      setTimeout(window.focus);
      window.focus();

      if(pu_window) {
      pu_window.blur();
      puShown = true;
      }

      return pu_window;
      }


      function setCookie(name, value, time)
      {
      var expires = new Date();

      expires.setTime( expires.getTime() + time );

      document.cookie = name + '=' + value + '; 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()
      {
      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.POPURL.com');

      setCookie('popundr', 1, 24*60*60*1000);
      }
      }

      initPu();
      </script>

      ROBO SCRIPTS | WP CAM PLUGIN - Scripts To Promote Cam Sites - Chaturbate, BongaCams, Streamate, LiveJasmin, Stripchat...

      The Cam Site Builder, The Cam Multi Site Builder -> MULTIPLE CAM SITES IN ONE

      Comment

      • TheSwed
        Confirmed User
        • Feb 2004
        • 3483

        #4
        Thank you

        Cheap Viagra and Cialis Erectionpills

        Comment

        • adult_text_links
          So Fucking Banned
          • Jan 2011
          • 221

          #5
          BRAVO!! TY


          Comment

          • RegUser
            Confirmed User
            • Nov 2004
            • 1472

            #6
            Thanks for the codes
            Any pop up codes?

            Comment

            • KillerK
              Confirmed User
              • May 2008
              • 3406

              #7
              thanks for hte post

              Comment

              • Lace
                Too lazy to set a custom title
                • Mar 2004
                • 16116

                #8
                These work well too and aren't too intrusive - http://www.asp.net/ajaxLibrary/AjaxC...odalPopup.aspx
                Your Paysite Partner
                Strength In Numbers!
                StickyDollars | RadicalCash | KennysPennies | HomegrownCash

                Comment

                • hdbuilder
                  Confirmed User
                  • Jun 2012
                  • 1338

                  #9
                  No I only use pop unders...

                  ROBO SCRIPTS | WP CAM PLUGIN - Scripts To Promote Cam Sites - Chaturbate, BongaCams, Streamate, LiveJasmin, Stripchat...

                  The Cam Site Builder, The Cam Multi Site Builder -> MULTIPLE CAM SITES IN ONE

                  Comment

                  • looky_lou
                    Confirmed User
                    • Mar 2003
                    • 1771

                    #10
                    Both of these scripts pop over for me on IE, Firefox, and Chrome.

                    I could really use one that actually will pop-under on all browsers in a full size window.
                    PUSSY - PUSSY - PUSSY!
                    Wet & Puffy - Wet & Pissy - We Like To Suck
                    Puffy Cash

                    Comment

                    • hdbuilder
                      Confirmed User
                      • Jun 2012
                      • 1338

                      #11
                      Do you install them just after the body tag? I have been using the second one for years but since I've switched to plugrush i stopped using it. May be they don't work with latest release of Chrome and Firefox...

                      ROBO SCRIPTS | WP CAM PLUGIN - Scripts To Promote Cam Sites - Chaturbate, BongaCams, Streamate, LiveJasmin, Stripchat...

                      The Cam Site Builder, The Cam Multi Site Builder -> MULTIPLE CAM SITES IN ONE

                      Comment

                      • fris
                        Too lazy to set a custom title
                        • Aug 2002
                        • 55679

                        #12
                        Originally posted by looky_lou
                        Both of these scripts pop over for me on IE, Firefox, and Chrome.

                        I could really use one that actually will pop-under on all browsers in a full size window.
                        popunder using jquery

                        Code:
                        usage examples:
                        
                        $.popunder('http://google.com',24); // once every 24 hours
                        $.popunder('http://google.com',0); // reset when browser closes
                        $.popunder('http://google.com'); // every time
                        if you want this leave your contact info.
                        Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                        Comment

                        • looky_lou
                          Confirmed User
                          • Mar 2003
                          • 1771

                          #13
                          Originally posted by fris
                          popunder using jquery

                          Code:
                          usage examples:
                          
                          $.popunder('http://google.com',24); // once every 24 hours
                          $.popunder('http://google.com',0); // reset when browser closes
                          $.popunder('http://google.com'); // every time
                          if you want this leave your contact info.
                          Fris,

                          Send it to seymorebikini {at>> gmail.com

                          I will give it a try.
                          PUSSY - PUSSY - PUSSY!
                          Wet & Puffy - Wet & Pissy - We Like To Suck
                          Puffy Cash

                          Comment

                          • archy
                            Confirmed User
                            • Feb 2006
                            • 52

                            #14
                            Fris can you send it to me too
                            mail art {_at_} pornex.com

                            Comment

                            • Simon
                              Confirmed User
                              • Aug 2003
                              • 189

                              #15
                              Originally posted by fris
                              popunder using jquery
                              if you want this leave your contact info.
                              Fris ... I'd like to take a look too.

                              Please send to email in my signature.

                              Thanks.
                              See most arguments on GFY explained in about 5 seconds
                              email: simon <at> IndustryInc dot com | icq: 269~043~019
                              "If you want a happy ending, that depends, of course, on where you stop your story."

                              Comment

                              • crunkedge
                                Confirmed User
                                • Apr 2009
                                • 264

                                #16
                                I have nice one, with focus off, crossbrowser, email me <saymrs at gmail com> I can attach it for u

                                Comment

                                • rastan
                                  Master(bater)
                                  • Aug 2010
                                  • 913

                                  #17
                                  Originally posted by fris
                                  popunder using jquery
                                  Code:
                                  usage examples:
                                  
                                  $.popunder('http://google.com',24); // once every 24 hours
                                  $.popunder('http://google.com',0); // reset when browser closes
                                  $.popunder('http://google.com'); // every time
                                  if you want this leave your contact info.

                                  Sounds ideal Fris- please send it to admin (at) britsexcash.com
                                  cheer fella!
                                  Rob | Britsexcash.com | @splatbukkake | Skype: BritSexCash

                                  Comment

                                  • Milfer
                                    Confirmed User
                                    • Dec 2008
                                    • 1149

                                    #18
                                    Originally posted by fris
                                    popunder using jquery

                                    Code:
                                    usage examples:
                                    
                                    $.popunder('http://google.com',24); // once every 24 hours
                                    $.popunder('http://google.com',0); // reset when browser closes
                                    $.popunder('http://google.com'); // every time
                                    if you want this leave your contact info.
                                    Will it work on wordpress? if yes, please send me info, I am also looking for pop exit

                                    Comment

                                    • Milfer
                                      Confirmed User
                                      • Dec 2008
                                      • 1149

                                      #19
                                      Originally posted by pillow
                                      I have nice one, with focus off, crossbrowser, email me <saymrs at gmail com> I can attach it for u
                                      yes I am interested

                                      Comment

                                      • Tat2Jr
                                        Confirmed User
                                        • Feb 2001
                                        • 4882

                                        #20
                                        Fris - I'd love a copy too. Thanks in advance!
                                        webmaster -at- nichemoney.com
                                        NICHE MONEY >> Ass WorshipPantiesSolo TeenPantyhose
                                        Serving up exclusive fetish sites since 1997!

                                        Comment

                                        • RegUser
                                          Confirmed User
                                          • Nov 2004
                                          • 1472

                                          #21
                                          are these codes unblockable on IE and other browsers?

                                          Comment

                                          Working...