notageek
11-27-2005, 03:33 PM
In my multi-frame html document I defined a java-script variable a1 in frame[0]. I want this variable to be loaded in frames[1] as the 'value' in:
<input type = "number" ...
I can't use a static assignment, e.g.:
Value = 5
because the value to be loaded changes.
I tried:
VALUE=top.frames[0].a1
and
VALUE=eval(top.frames[0].a1)
I can't make 'onload' running either.
Help please...
<input type = "number" ...
I can't use a static assignment, e.g.:
Value = 5
because the value to be loaded changes.
I tried:
VALUE=top.frames[0].a1
and
VALUE=eval(top.frames[0].a1)
I can't make 'onload' running either.
Help please...