I have a frameset consisting of 3 frames: top, left and right.
In top frame: body onload calls a js init function to set (or resets) values
in textareas etc...in all frames.
In right frame: A large textarea for dynamicly updated text.
Problem: When clicking the browser 'update' this doesnt work:
myTextAreaOnThe Right = "";
UNLESS I put an alert(anything) before the statement.
So,
'myTextAreaOnTh eRight = ""; '
doesnt work,
'alert(anything );
myTextAreaOnThe Right = ""; '
does.
(I`m using IE 6 on windows)
Any ideas ??
Oeyvind
--
In top frame: body onload calls a js init function to set (or resets) values
in textareas etc...in all frames.
In right frame: A large textarea for dynamicly updated text.
Problem: When clicking the browser 'update' this doesnt work:
myTextAreaOnThe Right = "";
UNLESS I put an alert(anything) before the statement.
So,
'myTextAreaOnTh eRight = ""; '
doesnt work,
'alert(anything );
myTextAreaOnThe Right = ""; '
does.
(I`m using IE 6 on windows)
Any ideas ??
Oeyvind
--
Comment