Hi,
I want resize browser window to 1000x700 pixel by default on load of html page. Also whenever you resize window the minimum dimension 1000x700 should be maintained. I tried
window.onresize = function(){
window.resizeTo(1000,700);
};
but in IE8 its not working giving error "Access denied", however in FF its work fine.
Please guide me with some alternate solution that can be handled using JS