There is loads of discussion about users not clicking through a link if they realize it is an affiliate link..... :o
so if you want to hide the links from the status bar of the browser just paste the following script into the <HEAD> section of your page
<script>
//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
if you do this the status bar at the bottom of the browser displays nothing.
Please note, this works ONLY with IE
if you know of a similar script that works with Firefox please post it here
so if you want to hide the links from the status bar of the browser just paste the following script into the <HEAD> section of your page
<script>
//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
if you do this the status bar at the bottom of the browser displays nothing.
Please note, this works ONLY with IE
if you know of a similar script that works with Firefox please post it here







