• 0

Custom Window Size


Question

3 answers to this question

Recommended Posts

  • 0

If you're looking to resize a window after the pages loads, use this:

function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
	top.outerWidth=w;
	top.outerHeight=h;
   }
   else top.resizeTo(w,h);
 }
}

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.