Use this code to hide destination url of any text link from web pages.
<a onmouseover=”window.status=’You are now visiting another page’;return true;” onmouseout=”window.status=”;return true;” href=”http://www.destination.com”>Click Here</a>
change “destination.com” to url which you are linking. And change “Click Here” to your anchor text.
