Here's something that I use myself and might be useful for others.
I like to hide my affiliate id on my website. Here's how you do it.
What this does is mask the affiliate id on your status bar, so when you hold your mouse over the link it shows Yahoo, but in fact, when you click it, it goes to Google.
Then, to finish it off head over to
and encode your final html code to java. Anyone trying to view your source code will now see jibberish. Alternatively, you can just encode your entire website.
Enjoy.
I like to hide my affiliate id on my website. Here's how you do it.
Code:
<a href="http://www.yahoo.com" onclick="parent.location.href='http://www.google.com'; return event.returnValue=false">Your text here, or your image.</a href>
What this does is mask the affiliate id on your status bar, so when you hold your mouse over the link it shows Yahoo, but in fact, when you click it, it goes to Google.
Then, to finish it off head over to
Code:
http://scriptasylum.com/tutorials/encdec/javascript_encoder.html
Enjoy.