In Firefox you can enter the following into the awesome bar and hit enter:
javascript:self.resizeTo(1024,768);
How do you do the same thing in IE?
In Firefox you can enter the following into the awesome bar and hit enter:
javascript:self.resizeTo(1024,768);
How do you do the same thing in IE?
javascript:resizeTo(1024,768);
vbscript:resizeto(1024,768)
Will work in IE7, But consider using something like
javascript:moveTo(0,0);resizeTo(1024,768);
because IE7 doesn't allow the window to "resize" beyond the screen borders. If you work on a 1024,768 desktop, this is what happens...