![]() |
|
|
+ Search |
![]()
|
Oct 1st, 2001 01:27
Jean-Bernard Valentaten, Pak So,
Well, you can't always prevent it from beeing resized, but you can use
the onresize-handler, to create a workaround.
function unResize()
{
var xWidth = ;/*some value you need it to be*/
var yHeight = ;/*some value you need it to be*/
window.resizeTo(xWidth, yHeight);
}
and in the body-tag you write this
<body ... onresize="unResize();">
This should do the trick.
HTH