»
EnglishFrenchVietnamese

Print - Window Resize - JavaScriptBank.com

Full version: jsB@nk » Browser » Popup » Window Resize
URL: https://www.javascriptbank.com/window-resize-jeff-manning.html

Window Resize © JavaScriptBank.comView your Web pages in different size windows. This JavaScript will open a new, resized window using the measurements (in pixels) you choose. Small but effective.

Full version: jsB@nk » Browser » Popup » Window Resize
URL: https://www.javascriptbank.com/window-resize-jeff-manning.html



HTML
<form name="one" style="line-height: 2em;"><label>File Name: <input type="text" style="width:20%;" name="file"></label><br><label>Width: <input type="text" style="width:5%;" name="wsize"></label>   <label>Height: <input type="text" style="width:5%;" name="hsize"></label><br><button style="width:10%;" onclick="var win = window.open(document.one.file.value,'','width=' + document.one.wsize.value + 'height=' + document.one.hsize.value)">Resize</button></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->