View Full Version : working with links
phani
09-17-2002, 09:34 AM
how to prevent the address of the link to be displayed in the status bar
<html>
<head>
<title>Status</title>
<script language="javascript" type="text/javascript">
<!-- ;
function foo(msg){
window.status=msg;
return true;
}
// -->
</script>
</head>
<body>
<a href="javascript: void(0)" onmouseover="return foo('')">text</a>
</body>
</html>
or just this in each link...
<a href="blah.htm" onmouseover="window.status=' ';return true">another way</a>
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.