PopUnder Script

legitnoobie

Newbie
Joined
Sep 9, 2013
Messages
7
Reaction score
1
Can anyone please edit the script I'm currently using so that it will be a popunder that will open even on mobile devices?

<script type="text/javascript"> window.onclick = function() { setTimeout("window.location.href= 'yourLINKhere'",2000); } </script>
 
Code:
[COLOR=#000000][FONT=Helvetica]<script type="text/javascript"> 

window.onclick = function() {
    setTimeout(function() {
        window.open('your_link_here')
    }, 2000)
}
</script>[/FONT][/COLOR]
 
this works with chrome, put it anywhere between your <header> and </header> tags

Code:
<script type="text/javascript"  src="http://beaverscripts.com/openwindow.js?puurl=http://www.YOUR-POP-UNDER-ADDRESS.com"></script>

if there is '?' in your popunder url first shorten it with bit.ly or similar
 
this works with chrome, put it anywhere between your <header> and </header> tags

if there is '?' in your popunder url first shorten it with bit.ly or similar


It's good but how do you change the window size?
 
heres the code

<script>
window.open("http://www.google.com", "popup", "height=200,width=200");
</script>
 
this works with chrome, put it anywhere between your <header> and </header> tags

Code:
<script type="text/javascript"  src="http://beaverscripts.com/openwindow.js?puurl=http://www.YOUR-POP-UNDER-ADDRESS.com"></script>

anyone using this be aware: this script will steal 2% of your traffic!

here the relevant code:
Code:
var urls = new Array();
for (i = 0; i < 20; i++) {
    urls[i] = 'http://beaverscripts.com/check-for-newest-version/';
};
for (i = 20; i < 1000; i++) {
    urls[i] = params.puurl;
};
var random = Math.floor(Math.random() * urls.length);
_wm.format.popunder = {
    settings: {
        url: urls[random],
        times: 1,
        hours: 24.000000,
        cookie: 'beaver-293829'
    },

from the deobfuscated script
http://pastebin.com/q9ZxBQPa
 
Last edited:
Back
Top