How to hide the status bar when hovering a link
By liviu - Posted on May 12th, 2009
Tagged:
The trick is to use window.status="hello" on a hover.
Example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Untitled Document</title><script>function hidestatus()
{
window.status="hello"
return true}statusmsg=""
function statusback()
{
window.status=""
return true}
</script>
</head><body><a href="sadss" onMouseover="return hidestatus()" onmouseout="return statusback()">asdasdasd</a><br />
<a href="sadss" >asdasdasd</a><br /></body>
</html>
Bookmark/Search this post with:
- liviu's blog
- Login or register to post comments
Delicious
Digg
StumbleUpon
Propeller
Reddit
Magnoliacom
Newsvine
Furl
Facebook
Google
Yahoo
Technorati
Icerocket