You can use the onloadJS event in the tag <body>. For example: <body onload="ResizeBody();">. And the function might look like this:
function ResizeBody() {
document.body.style.width=your_width;
document.body.style.height=your_height;
}
Now it works, sorry for the previous error (not stylein the tree).
source
share