In this tutorial I will show you how incredible money you can make just by doing almost NOTHING. All you do is put the auto generated adf.ly javascript into your blog then you can start making money.. :D

What is adf.ly? adf.ly is a link shortener service that convert your link into a tiny one just like bit.ly or goo.gl from google. The main difference is adf.ly PAY you each time user click on the link you create. For further information you can visit their website.

Now I will share you this incredible script that can convert ALL your site's link into adf.ly one. So, everytime use click on the link, it will redirected to adf.ly site and you're revenue will counting up.
I'm sure this is not violate their TOS because I get the script from their forum and they said its legal. I just modified a little bit of the javascript so it can works better then previous version.

Here is the script:

<script type="text/javascript">
onmousemove = function adfly() {
adfly_id = '70794'; //replace with your ID
for (var i = 0; i < document.links.length; i++) {
var hrefer = document.links[i].href;
if(hrefer.match("adf.ly") || hrefer.match("javascript:")|| hrefer.match("#")) {
document.links[i].href = document.links[i].href;
}else{document.links[i].href = 'http://adf.ly/' + adfly_id + '/' + document.links[i].href;}
}
}
</script>

Just paste it into your BODY tag of your site.

Explanation:
This script will convert all your site's link, EXCEPT adf.ly itself, javascript href, and '#' href. You can add any other link as exception such as your own site, advertising link, etc. To do that, just add the new || hrefer.match("your URL")) inside the IF section of the script.
That's it.. :D Very simple right? Don't forget to PARSE the script so it can work on your template (especially for blogger user)

I know that adf.ly have provided the similar script but trust me, my script is easier and faster to load... :D
hi folks, visit my other tutorial blog at Kumpulan tutorial menarik
0 comments