Hello,
I need a javacript made so when I open a certain html page it will resize and the browser buttons will be removed. I know how to resize the browser but how do I remove the Address bar, Browser links etc.
This is the code I have so far:
I need a javacript made so when I open a certain html page it will resize and the browser buttons will be removed. I know how to resize the browser but how do I remove the Address bar, Browser links etc.
This is the code I have so far:
Code:
<script language='javascript'>
var width, height;
width = 700;
height = 700;
resizeTo(width, height);
</script>















