Click to See Complete Forum and Search --> : window properties
caynada
10-31-2003, 04:35 PM
how do you control the properties of a window? When my page opens I have this code in the head: <script language="JavaScript">
window.moveTo(0,0);
window.resizeTo(662,400);
</script>
which works well, but I would like to get rid of the tool bar & menu and have no scrolling.
fredmv
10-31-2003, 04:39 PM
Sorry, not possible. You can only remove features such as the addressbar, toolbar, and the like when you open a new window. However, you can remove the scrollbar through JavaScript like this:document.body.style.overflow = "hidden";Good luck.
caynada
10-31-2003, 04:45 PM
sorry that was my fault for not being clear (happy hour has started early). I would like to just get rid of the toolbar and address.
fredmv
10-31-2003, 04:52 PM
Originally posted by fredmv
You can only remove features such as the addressbar, toolbar, and the like when you open a new window.