This technique doesn’t work if JavaScript is disabled in the web browsers. In that case, the browers will be redirected to URL in the href attribute.
window status function
<a href="http://i-blogger-you.blogspot.com/?referrer=225" onMouseOver="window.status='http://i-blogger-you.blogspot.com/'; return true" onMouseOut="window.status=''">Click This</a>
redirect function
- Create Javascript Function
<script language="javascript" type="text/javascript"> function redirect(URL) { document.location=URL; return false; } </script>
<a href="http://i-blogger-you.blogspot.com/" onclick="return redirect('http://i-blogger-you.blogspot.com/?referrer=225');">Click This</a>
css function
- create a class within your style sheet
<style type="text/css" media="all"> <!-- .hideit { color: #000; /* change with the surrounding text color */ text-decoration: none; /* this to remove the underline */ cursor: text; /* make the cursor stay as a text cursor, not the hand */ --> </style>
<a href="http://i-blogger-you.blogspot.com/" class="hideit">Click This</a>
Add Comments