You cannot remove the status bar of the current browser window. Only in the popup window. But if the browser window is maximized you can use the trick to hide the status bar:
<html>
<head>
<script>
function noStatus() {
window.moveTo(0, 0);
window.resizeTo(screen.ava
}
</script>
</head>
<body onload="noStatus();">
</body>
</html>
Main Topics
Browse All Topics





by: dorwardPosted on 2005-07-16 at 20:49:02ID: 14460179
No ... and most modern browsers have options that prevent you removing it period - even in popups.