Hey,
so I am new to javascript but I am starting to see how great it can be.
I was just wundering if someone could help me apply what I need into the following script I am using.
I want no menu bar, scroll bars, status bars etc, completely striped down browser window so there is just the title at the top. How would I go about implementing this into my code?
the code I'm using is...
-------------------------------------------
<script language='javascript'>
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
if (parseInt(navigator.appVersion)>3)
top.moveTo(0,0);
top.resizeTo(wide,high);
</script>
-------------------------------------------
Hope that all makes sence
Thanks in advance to anyone who can help me out!
so I am new to javascript but I am starting to see how great it can be.
I was just wundering if someone could help me apply what I need into the following script I am using.
I want no menu bar, scroll bars, status bars etc, completely striped down browser window so there is just the title at the top. How would I go about implementing this into my code?
the code I'm using is...
-------------------------------------------
<script language='javascript'>
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
if (parseInt(navigator.appVersion)>3)
top.moveTo(0,0);
top.resizeTo(wide,high);
</script>
-------------------------------------------
Hope that all makes sence
Thanks in advance to anyone who can help me out!