M
Matt
I want to disable the title bar, status bar and address bar of a
window, I don't know what is the correct approach.
I tried the following but not working. any ideas??
Is there any approach using HTML in my problem?
<html>
<title>hey</title>
<script type="text/javascript">
function disablestatusbar()
{
window.document.statusbar.enable = false;
}
</script>
<body onload="disablestatusbar()">
</body>
</html>
window, I don't know what is the correct approach.
I tried the following but not working. any ideas??
Is there any approach using HTML in my problem?
<html>
<title>hey</title>
<script type="text/javascript">
function disablestatusbar()
{
window.document.statusbar.enable = false;
}
</script>
<body onload="disablestatusbar()">
</body>
</html>