I have 3 frames in a window (just name them frame1, frame2, frame3)
how can i refresh only ONE of the frame when a button is pressed on another frame? for example, a button pressed in frame1 will refresh ONLY frame3.
I the anchor tag ( the <A> ) just put in
<a href="(where to go)" target="frame3">My Link</a>
The important part is the target will tell it which frame to open the link in.
Hope that helps.
Chris King
what i was asking is "refresh"? not target...
Try: window.parent.frames["frame3"].refresh();