change width and height of internet explorer
-
Can anybody tell me how to change the width and height of internet explorer when html page loads(Example:150px * 100 px) . i hv written the foll. codes inside body tag style="max-width: 133px;max-height: 20px" but it is not working. Thanks
function resizeWindow()
{
var screen_x = 150;
var screen_y = 100;
window.resizeTo(screen_x, screen_y);
window.moveTo(0,0);
}just add the above javascript function inside script tags and call the function inside body tag:
<body onload="javascript:resizeWindow()" >
modified on Wednesday, May 21, 2008 5:33 AM
-
function resizeWindow()
{
var screen_x = 150;
var screen_y = 100;
window.resizeTo(screen_x, screen_y);
window.moveTo(0,0);
}just add the above javascript function inside script tags and call the function inside body tag:
<body onload="javascript:resizeWindow()" >
modified on Wednesday, May 21, 2008 5:33 AM