I'm trying to make the windows.resizeTo() function to occur only once. Currently it's called everytime I load or refresh the page. Here's the code:
<body onload="window.resizeTo(600,400);">
I don't want it to go back to 600x400 when I refresh the page. How do I achieve this?
<body onload="window.resizeTo(600,400);">
I don't want it to go back to 600x400 when I refresh the page. How do I achieve this?