Since you also noted in jquery (although only js is written in the question title), I would add this answer
You can add the following web pages to a web page to enlarge the browser window.
body { -moz-transform: scale(0.8, 0.8); zoom: 0.8; zoom: 80%; }
So your jquery will become
$(document).ready(function(){ $('body').css('zoom','80%'); $('body').css('zoom','0.8'); $('body').css('-moz-transform',scale(0.8, 0.8)); });
Do not worry about any cross-browser, as the browser will avoid any obscure css property.
akki
source share