Można otworzyć nowe okno , które będzie otwarte na całości ekranu bez nagłówka i scrolla?
<head> <script language='javascript'> function otworzOkno(adres){ var x=screen.width; var y=screen.height; var win=window.open(adres,'NazwaOkna','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=y s,resizable=yes,fullscreen=no,width='+x+',height='+y+',top=0,left=0'); } </script> </head> <body> </body>
<script language='javascript'> function otworzOkno(adres){ var x=screen.width; var y=screen.height; var config='toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=y s,resizable=yes,fullscreen=no,width='+x+',height='+y+',top=0,left=0'; var win=window.open(adres,'NazwaOkna',config); } </script> </head> <body> </body>