<heather.memmel (AT) gmail (DOT) com> wrote
Quote:
... the topic of reloading two frames from a link in a image
map. Here is the code it doesn't work, Please Help!
function update1() {
Top.Video.location="oakwood_wmhs.htm";
Top.Selector.location="selector_oakwood.htm"; } |
The topmost window should be referenced as "top" with a lowercase "t".
Also, in your HTML frameset, the name of the frame is "Select", not
"Selector" (I'd use a less confusing name btw). In short, changing the
function as follows should do the trick:
function update1() {
top.frames.Video.location="oakwood_wmhs.htm";
top.frames.Select.location="selector_oakwood.htm"; }
hth
--
Ivo