proof payment as publisher WaitAds

Payment 15 days net, get money with best cpm rate. Auto-approval, Payment Method payoneer, paxum, paypal. You can grow your website online, choose your best rate.

How to configure conversion tracking in WaitAds

WaitAds advertising Network supports server-to-server (s2s) conversion tracking as well as client-side (cookie based) tracking. That should be enough for you to track installs, registrations and other types of actions.

How expert for tech support on Waitads.

What is Tech Support Campaign? The first you need to know about Tech support, is the business where online services such as repair services, online installation of software and many other support help is rendered and when this process is being transpired for target audience, it is known as tech support campaign.

WaitAds el traffico que sirve para CPA, CPI, CPM Network

Estabas buscando donde promocionar tus banners ads de afiliado como mobidea sin tener que descargar nada?

Paga : Como ganar dinero con Waitads Advertising Network CPM en linea ?

Es una pagina que se llama Waitads, es una nueva red publicitaria pero si paga. Su estadistica, tiempo estimado 5 minutos. No se encuentra muchas informaciones en linea debido es nueva.

martes, 28 de mayo de 2019

Disable Browser Back Button Script



1- Must be placed in the HEAD section of the Page

<script type="text/javascript" >
   function preventBack(){window.history.forward();}
    setTimeout("preventBack()", 0);
    window.onunload=function(){null};
</script>

For illustration purposes, two Pages are used Login and Home.

Disable Browser Back Button Functionality using JavaScript

The Disable Browser Back Button Script is placed in the HEAD section so that User cannot access the Login page using Browser Back button from Home page.

2 - now body </body>

<body>
    <h3>Login</h3>
    <hr />
    <a href = "Home.htm">Redirect to Home</a>
</body>

the code will look like this

<head>
    <title>Login</title>
    <script type="text/javascript">
        function preventBack() { window.history.forward(); }
        setTimeout("preventBack()", 0);
        window.onunload = function () { null };
    </script>
</head>
<body>
    <h3>Login</h3>
    <hr />
    <a href = "Home.htm">Redirect to Home</a>
</body>
</html>

Open Popup after 5 seconds what am I doing wrong?

<script type="text/javascript">

        var link;
        var element;
                    t=setTimeout(openpopupFunction,5000);
        function openPopUp(url)
        {
            link = url;
            element = document.getElementById("background");
            element.style.display = "block";
            element = document.getElementById("popup");
            element.style.display = "block";

        }
</script>

miércoles, 22 de mayo de 2019

Link for App Download - Mobile OS Detection and Redirect Download Link to Appropriate App Store


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Redirect</title>
<script type="text/javascript"> // <![CDATA[
//iPhone Version:
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
window.location = "http://goo.gl/IWd7J";
}
//Android Version:
if(navigator.userAgent.match(/android/i)) {
window.location = "http://goo.gl/1K1Hi";
}
//Blackberry Version:
if(navigator.userAgent.match(/blackberry/i)) {
window.location = "http://goo.gl/jH2wD";
}
</script>
</body>
</html>

What if we need to redirect user to different page when on desktop or large screen?
}
//Blackberry Version:
if(navigator.userAgent.match(/blackberry/i)) {
window.location = "http://goo.gl/jH2wD";
else {
window.location = "PLACE THE URL FOR LARGE SCREENS HERE";
}

</script>


sábado, 18 de mayo de 2019

CloudFlare ad codes work correctly?

In case you use CloudFlare. Will data codes work correctly?

Cloudflare has a feature called "RocketLoader" which causes changes to our javascript code and therefore our script works in the wrong way or does not work at all affecting your impressions and revenue.

Here is an example what RocketLoader does to our script:

our script:
<script type='text/javascript' src='//pl123456.puhtml.com/82/6d/f3/826df33e1880e1ab086c8406879dc14e.js'></script>

our script after it was affected by RocketLoader:
<script type="text/rocketscript" data-rocketsrc='//pl123456.puhtml.com/82/6d/f3/826df33e1880e1ab086c8406879dc14e.js'></script>

In order to prevent RocketLoader from adding extra text to our code you should add a tiny piece of text into our default code: just add data-cfasync="false" attribute into our code just before the type attribute

Example:

<script data-cfasync="false" type='text/javascript' src='//pl123456.puhtml.com/82/6d/f3/826df33e1880e1ab086c8406879dc14e.js'></script>

viernes, 17 de mayo de 2019

Interstitial page before every external link?

$(document).ready(function() {
   var urlRedirectLandingPage = 'http://somepage.com?redirectUrl=';
   $('a').each(function(a, e) {
     if (e.href.indexOf(window.location.hostname) > -1) {
       return;
     }
     $(e).onclick(function(elem) {
         elem.preventDefault();
         window.location.href = urlRedirectLandingPage + elem.href;
     }
   }
}

sábado, 11 de mayo de 2019

How to configure conversion tracking on WaitAds ?


WaitAds advertising Network  supports server-to-server (s2s) conversion tracking as well as client-side (cookie based) tracking. That should be enough for you to track installs, registrations and other types of actions.

Server-to-server (s2s) tracking

1. You need to append _aso_clk={click} parameter to your Landing URL. Parameter name can be arbitrary;

2. {click} placeholder will be replaced with a unique token on redirect. You need to store this token on your side;

3. In the case of conversion, you need to send a click token to our API by calling this URL:

https://api.adsrv.net/v2/conversion/create?token=TOKEN

You can send a custom amount. To do that you have to append "&amount=AMOUNT" parameter to API URL above.

Client side / Cookie based tracking

1. You need to append _aso_clk={click} parameter to your Landing URL. Parameter name must be _aso_clk;

2. Insert this code in the landing page:

<script src="//track.aso1.net/cnv.js"></script>

3. Insert this code in your "Thank you" page:

<script src="//track.aso1.net/cnv.js"></script>
<script>_ASO.Cnv.postback();</script>

You can send a custom amount. To do that you need to set the needed amount as the second parameter of _ASO.Cnv.postback function. The first parameter has to be null.

<script>_ASO.Cnv.postback(null, AMOUNT);</script>

Sign up here to take your luck in buying traffic to get conversion as installs, registrations and other types of actions.

https://www.mywaitad.com

lunes, 6 de mayo de 2019

Notification bar code

<!-- Notification bar code start -->
<style type='text/css'>
#gls-sticky {
background: #333333;     /* Bar background color */
color:#fff; /* Bar text color */
text-align: center;
margin: 0 auto;
height:310px; /* Bar height */
line-height: 50px; /* Bar line height */
font-size:14px; /* Bar font size */
font-weight: bold;      /* Bar line weight */
text-transform: none;     /* Bar text capitalization - options: none, capitalize, lowercase, uppercase */
position:fixed; /* Bar position. Change to - absolute - to make non-sticky. */
vertical-align: baseline;
overflow:hidden;
z-index:9999;
width:100%;
display:block;
top: 0; /* To create a bottom notification bar, change this line to - bottom: 0;  */
}
#gls-sticky p a {
color: #b791b6;     /* Link Color */
text-decoration: none;
}

#gls-sticky p a:hover {
color: #abc4c1;       /* Link Hover Color */
}

#gls-sticky p a#gls-button {
background:#b791b6; /* Button Background Color */
color: #fff; /* Button Text Color */
padding:4px 8px;
border-radius: 5px;
margin-left: 6px;
}

#gls-sticky p a#gls-button:hover {
background:#abc4c1; /* Button Hover Background Color */
color: #fff; /* Button Text Hover Color */

}

#gls-sticky p {
width:95%;
float:left;
}

.gls-cross {
display:block;
position:relative;
right:15px;
float:right;
}
.gls-cross a {
font-size:18px;    /* Exit X size */
font-weight:bold;
font-family:&quot;Arial&quot;;
color:#fff;  /* Exit X color */
line-height:30px;
}
.gls-cross, a:hover {
color: #abc4c1; /* Exit X Hover Color */
text-decoration:none;
}

</style>
<div id='gls-sticky'>
<p><Text bar</p></div><a id='gls-button' href='https://georgialoustudios.com' target='_blank'><Text bar</iframe></a>
<div class='gls-cross'><a href='javascript:hide_cross();'>X</a></div>

<script language='JavaScript'>
function hide_cross() {
crosstbox = document.getElementById(&quot;gls-sticky&quot;);
crosstbox.style.visibility = &#39;hidden&#39;;
}
</script>
<br/><br/>

Translate = traduce

Nuestros ultimos