It’s a proven fact that many customers will not click on an affiliate URL at your site.

Maybe they resent seeing commission paid to an affiliate, maybe they feel less security when buying from an affiliate.

So, suppose they see a link looking like this in the browser status bar

http://www.abc.com/123

where ’123′ is your affiliate code.

They may decide to bypass the affiliate code and just type in the home page URL

http://www.abc.com

And that means you lose out on the commission.

Here is how to conceal not only the affiliate code but anything about that Url which may indicate it is an affiliate link. Use some Javascript.

onmouseover=
"window.status='ABC';
return true;"
onmouseout=
"window.status=' ';
return true;">

Then ‘ABC’ will show in the browser status bar instead of the URL.

If you want to try more Javascript tips and tricks see the ebook Javascript Magic

——————————————————————————–
But what about the case where you want to send out that URL in an email ?
That’s an easier target, ideal for commission theft as you will see in the next tip.