How to hide URL from displaying browser bottom status bar?
Just follow the step any of these below to hide URL from displaying browser bottom status bar when mouse hovers on a hyperlink:
1. Using javascript:
Put this javascript in your head section or after head tag before </head>function a() { location.href = "http://www.Qposter.com/"; }
1.1 Using javascript:
Put this code where you want to use it [Usually in body section] before </body><a href="javascript:a()">Qposter.com</a>
1.2 Using javascript Full Example:
<html>
<head>
<title>Hide URL from displaying browser bottom status bar</title>
<script type="text/javascript">
function a() { location.href = "http://www.Qposter.com/"; }
</script>
</head>
<body>
<a href="javascript:a()">Qposter.com</a>
</body>
</html>
2. Using Direct HTML:
<html>
<head>
<title>Hide URL from displaying browser bottom status bar</title>
</head>
<body>
<br>
<a onclick="location.href='http://www.qposter.com/'">Qposter.com</a>
<br><br>
<a onclick="location.href='http://www.qposter.com/'"
style="cursor:hand"><u>Qposter.com</u></a>
<br><br>
<a onclick="location.href='http://www.qposter.com/'"
style="cursor:pointer"><u>Qposter.com</u></a>
</body>
</html>
Don't Miss A Single Updates
✓Remember to check your email account to confirm your subscription.