AndyHib
01-05-2004, 06:01 AM
Could someone tell me if it is possible to manipulate the properties of a window while it is already open with code within the window.
To explain a little better, I am resizing the window using:
window.resizeTo(500, 500);
I now want to make the window non-resizable - so the user can not maximise/minimise the window.
I know you can do this in the original window.open statement but this unfortunately is not an option. I cannot also open another window from this one that has the properties I require.
I have looked around and found nothing to suggest that it is possible. I have tried several things such as
window.resizable = false;
window.resizable = no;
window.resizable = null;
does anyone have any ideas?
Thanks in advance
AndyHib
To explain a little better, I am resizing the window using:
window.resizeTo(500, 500);
I now want to make the window non-resizable - so the user can not maximise/minimise the window.
I know you can do this in the original window.open statement but this unfortunately is not an option. I cannot also open another window from this one that has the properties I require.
I have looked around and found nothing to suggest that it is possible. I have tried several things such as
window.resizable = false;
window.resizable = no;
window.resizable = null;
does anyone have any ideas?
Thanks in advance
AndyHib