When users manually minimize the website window I need the window to minimize up to a certain point and go no further. for example I need the minimum window size to stop at 800 x 600 and get stuck there even if a user tries to minimize it further.
The code that I am trying to play around with is the following with onresize function but I am not sure how to make it give me what I need.
<head>
<script>
function OnResizeDocument () {
alert ("The size of the window has changed.");
}
</script>
</head>
<body onresize="OnResizeDocument ()">
</body>
Thank you for your help..