Popunder script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • LouiseLloyd
    SO FUCKING SCAMMED
    • Mar 2010
    • 1429

    #1

    Popunder script

    Can anyone provide a reliable pounder script that works in most browsers?

  • LouiseLloyd
    SO FUCKING SCAMMED
    • Mar 2010
    • 1429

    #2
    One that you can declare the pop under URL outside of the script itself.

    eg.
    Code:
    <script>var ClickPop={Public:{PopURL:"http://www.website.xyz/"}};</script>
    <script src="http://wwww.mywebsite.xyz/popunder.js"></script>

    Comment

    • Unlimited
      Confirmed User
      • Nov 2005
      • 1301

      #3
      bump for popunder script

      Comment

      • zerovic
        Confirmed User
        • Apr 2010
        • 1116

        #4
        There you go..

        change the var url = "http://www.google.com/";

        to your url and, include it to your page and you are all set

        Code:
        function doMyStuff($) {
          $(document).ready(function(){
            var ran_yet = false;
            $("a,body,input").click(function() {
              if (ran_yet) {
                return;
              }
              ran_yet = true;
              var cookiename = 'nopopchaturbate';
              var val = getCookie(cookiename);
              if (!val) {
                val = 1;
              } else {
                val = parseInt(val);
              }
              setCookie(cookiename, val + 1, 1);      
              if (val != 1) {
                return;
              }
              var windowprops = "width=1024,height=768,location=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,top=1,left=1";
              var url = "http://www.google.com/";
              var myWin = window.open(url, "", windowprops);
              myWin.blur();
              window.focus();
            });
          });
        }
        
        function setCookie(c_name,value,exdays)
        {
        var exdate=new Date();
        exdate.setDate(exdate.getDate() + exdays);
        var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
        document.cookie=c_name + "=" + c_value;
        }
        
        function getCookie(c_name)
        {
        var i,x,y,ARRcookies=document.cookie.split(";");
        for (i=0; i < ARRcookies.length; i++)
        {
          x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
          y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
          x=x.replace(/^\s+|\s+$/g,"");
          if (x==c_name)
            {
            return unescape(y);
            }
          }
        }
        
        
        function check() {
        return window.jQuery && jQuery.fn && /^1\.[3-9]/.test(jQuery.fn.jquery);
          }
        
        if ( check() ) {
        
        doMyStuff( jQuery );
          
        } else {
        
        var script = document.createElement('script'),
          
        timer = setInterval(function(){
          if ( check() ) {
            clearInterval(timer);
              document.body.removeChild(script);
              doMyStuff( jQuery.noConflict(true) );
              }
            }, 30);
          
        script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
          
        document.body.insertBefore( script, document.body.firstChild );
          
        }
        php, html, jquery, javascript, wordpress - contact me at contact at zerovic.com

        Comment

        • aka123
          Confirmed User
          • Jul 2014
          • 4450

          #5
          Originally posted by zerovic
          There you go..

          change the var url = "http://www.google.com/";

          to your url and, include it to your page and you are all set

          Code:
          function doMyStuff($) {
            $(document).ready(function(){
              var ran_yet = false;
              $("a,body,input").click(function() {
                if (ran_yet) {
                  return;
                }
                ran_yet = true;
                var cookiename = 'nopopchaturbate';
                var val = getCookie(cookiename);
                if (!val) {
                  val = 1;
                } else {
                  val = parseInt(val);
                }
                setCookie(cookiename, val + 1, 1);      
                if (val != 1) {
                  return;
                }
                var windowprops = "width=1024,height=768,location=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,top=1,left=1";
                var url = "http://www.google.com/";
                var myWin = window.open(url, "", windowprops);
                myWin.blur();
                window.focus();
              });
            });
          }
          
          function setCookie(c_name,value,exdays)
          {
          var exdate=new Date();
          exdate.setDate(exdate.getDate() + exdays);
          var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
          document.cookie=c_name + "=" + c_value;
          }
          
          function getCookie(c_name)
          {
          var i,x,y,ARRcookies=document.cookie.split(";");
          for (i=0; i < ARRcookies.length; i++)
          {
            x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
            y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
            x=x.replace(/^\s+|\s+$/g,"");
            if (x==c_name)
              {
              return unescape(y);
              }
            }
          }
          
          
          function check() {
          return window.jQuery && jQuery.fn && /^1\.[3-9]/.test(jQuery.fn.jquery);
            }
          
          if ( check() ) {
          
          doMyStuff( jQuery );
            
          } else {
          
          var script = document.createElement('script'),
            
          timer = setInterval(function(){
            if ( check() ) {
              clearInterval(timer);
                document.body.removeChild(script);
                doMyStuff( jQuery.noConflict(true) );
                }
              }, 30);
            
          script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
            
          document.body.insertBefore( script, document.body.firstChild );
            
          }
          Seems good, thanks. Just add the <script></script> tags and it works.

          Comment

          • aka123
            Confirmed User
            • Jul 2014
            • 4450

            #6
            Although, that is popup, not popunder. At least for me it works as popup. How do I get it as popunder?

            Comment

            • aka123
              Confirmed User
              • Jul 2014
              • 4450

              #7
              Bump. Anyone? How to make that as a popunder?

              Comment

              • Adzvertise
                Confirmed User
                • Sep 2009
                • 210

                #8
                Originally posted by LouiseLloyd
                Can anyone provide a reliable pounder script that works in most browsers?

                If you`re still looking, I can sell you mine (works onclick pop-under). Very easy to set-up.
                Adzvertise.com - Buy Web Traffic, Advertising Placements, Social Media Exposure & More.
                Contact Us: [email protected]

                Comment

                • kjs
                  Confirmed User
                  • Jan 2014
                  • 167

                  #9
                  Visit any website that has pops from a good network.

                  View source. Find the popunder javascript, copy, change url, done.
                  Skype: live:1794c463efa7cc23

                  Comment

                  • dready
                    Confirmed User
                    • Oct 2002
                    • 5247

                    #10
                    Torrent sites such as piratebay usually keep theirs pretty up to date.
                    ICQ: 91139591

                    Comment

                    • aka123
                      Confirmed User
                      • Jul 2014
                      • 4450

                      #11
                      I am kinda against this copy-paste anyways, and it has the problem that if it has external js-file, I am not able to reach for it.

                      I have legit pop-under frow AW empire, but it hasn't navigation. Visitors can't make my whitelabel as favorite (at least easily) or browse that well.

                      Comment

                      • johanng
                        Confirmed User
                        • Sep 2006
                        • 554

                        #12
                        Originally posted by aka123
                        I am kinda against this copy-paste anyways, and it has the problem that if it has external js-file, I am not able to reach for it.

                        I have legit pop-under frow AW empire, but it hasn't navigation. Visitors can't make my whitelabel as favorite (at least easily) or browse that well.
                        I'm also looking for one(popunder script), could you share it?

                        Earn $10/cpm
                        Jo C
                        ICQ: 24-11-68-465

                        Comment

                        Working...