Link e Finestre esempio 5
Otto modi di gestire i nostri Link e Finestre
In questa sezione vedremo otto esempi di come possiamo gestire i nostri link e le nostre finestre
ESEMPIO 5
Finestra popup a tutto schermo (Fullscreen popup window)
CODE: Javascript
- <script type="text/javascript">
- <!--
- function popup(url)
- {
- params = 'width='+screen.width;
- params += ', height='+screen.height;
- params += ', top=0, left=0'
- params += ', fullscreen=yes';
- newwin=window.open(url,'windowname', params);
- if (window.focus) {newwin.focus()}
- return false;
- }
- // -->
- </script>
ESEMPIO 5
CODE: HTML