Javascript to resize the browser window to the desired width and height. This script will automatically change the size of windows using the measurements you specify.
Features
Used to resize the browser window.
View webpages in differnt sizes.
Check if the website is safe for all standard resolution sizes.
Resize the windows easily by specifying height and width properties.
Click on restore button to bring it back to the original size.
Preview
Specify Windows Resolution Properties
Downloads
Javascript Code
<!-- Script by hscripts.com --> <!-- Copyright of HIOXINDIA --> <!-- More scripts @www.hscripts.com --> <script type="text/javascript"> function changesize(w,h) { window.resizeTo(w,h) } function resiz() { var w=document.getElementById('wid').value; var h=document.getElementById('hei').value; changesize(w,h); } </script><!-- Script by hscripts.com -->