"Paul" <paulsmith5 (AT) hotmail (DOT) com> schreef in bericht
news:ca236fb1.0306260754.5d455234 (AT) posting (DOT) google.com...
Quote:
Hi,
I have the following script which I need to tweak. The script (see end
of message) will open a popup window which expands to a certain size.
When the window is expanded the maximize button is greyed out - I'd
like to be able to resize it if I wish. I've tried ammending the line
'win2=window.open("","","scrollbars")' to
win2=window.open("","","scrollbars=yes,resizeable= yes")' but to no
avail. Any help would be appreciated. If anybody has a different
script that produces the same effect I'd also be interested in it. |
It's not 'resizeable' but 'resizable':
win2=window.open("","","scrollbars=yes,resizable=y es")
JW