I'm looking at getting in to affiliate programs.
I wanted to find a way of hiding affialite ID and here's a bit of Javascript I found and then modified a bit:
Then you use this within your <a href> link
Obviously this is not 100% hidden but most people aren't going to look at the page code or right click the link before clicking - they will most like look at the status bar, see that its a normal link and click. To me it seems like little effort for a great result.
Now I've just got to find some affiliate programs...
I wanted to find a way of hiding affialite ID and here's a bit of Javascript I found and then modified a bit:
HTML:
<script>
//This script is based on:
//Hide status bar msg script- by javascriptkit.com
//Visit JavaScript Kit (j a v a s c r i p t k i t . c o m) for script
//Credit must stay intact for use
//Have added function parameter to original script so you can vary the URL
function hidestatus(fakeURL){
window.status=fakeURL
return true
}
</script>
Then you use this within your <a href> link
HTML:
<a href="<real url>" onMouseover="return hidestatus(<fake url>)" onMouseout="window.status=' '; return true">Click here</a>
Obviously this is not 100% hidden but most people aren't going to look at the page code or right click the link before clicking - they will most like look at the status bar, see that its a normal link and click. To me it seems like little effort for a great result.
Now I've just got to find some affiliate programs...