|
|
|
|
TUTORIALS
Intermediate Javascript Create a new window: Everything on the "INPUT" line must be on one line in the text editor: <FORM> <INPUT type="button" value="New Window!" onClick="window.open('http://www.flyinglemurs.com/','mywindow','width=800,height=600')"> </FORM> Create a new complete browser window: Everything on the "INPUT" line must be on one line in the text editor: <FORM> <INPUT type="button" value="New Window!" onClick="window.open('http://www.flyinglemurs.com/','mywindow','width=800,height=600,toolbar=yes, location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes, resizable=yes')"> </FORM> |