James
2003-10-09 12:52:42 UTC
On my home page I currently have a number of buttons, that
when clicked open page in a new full screen mode window
(no nav bars, no menus, nothing). For this i use following
script:
<SCRIPT LANGUAGE="JavaScript1.2">
function FullScreen()
{window.open('page_to_open.htm','myName',
'width='+screen.width+',height='+screen.height+',top=0,left
=0');
}
</SCRIPT>
This will open a full screen according to users screen
size. So far so good.
My problem is that the number of buttons is constantly
being increased and hence it is not neat anymore. So I
would like to use dropdown menus.
If i use somthing like menu below with *_blank after page
url, the page will open in a new window, but how do i open
it in full screen mode?
<form action="dummy" method="post"><select name="choice"
size="1" onChange="jump(this.form)"><option
value="http://www.yahoo.com*_blank">YAHOO</option><option
value="">d</option></select></form>
This problem has been eluding me for some time now, any
help would be much apreshiated.
when clicked open page in a new full screen mode window
(no nav bars, no menus, nothing). For this i use following
script:
<SCRIPT LANGUAGE="JavaScript1.2">
function FullScreen()
{window.open('page_to_open.htm','myName',
'width='+screen.width+',height='+screen.height+',top=0,left
=0');
}
</SCRIPT>
This will open a full screen according to users screen
size. So far so good.
My problem is that the number of buttons is constantly
being increased and hence it is not neat anymore. So I
would like to use dropdown menus.
If i use somthing like menu below with *_blank after page
url, the page will open in a new window, but how do i open
it in full screen mode?
<form action="dummy" method="post"><select name="choice"
size="1" onChange="jump(this.form)"><option
value="http://www.yahoo.com*_blank">YAHOO</option><option
value="">d</option></select></form>
This problem has been eluding me for some time now, any
help would be much apreshiated.