Changing url between frames in a frameset

Need a javascript than can, from a frame, relaod another frame with a new url -- or a url with new parameters?

// by frame id (in the parent frameset)
parent.frames["OtherFrameId"].window.location = "http://...."

// or by index
parent.frames[2].window.location = "http://..."

No comments: