I have three frames in a html page. The top frame is named "top" (frames[0]), the left frame is named "left" (frames[1]), the right frame is named "right" (frames[2]). I want to load an actual document (Word, Excel) from the left frame ("left"
into the right frame ("right"
. Here is my code to set the target to the "right" frame and then I set the location, but instead of putting the document in the frame it always opens a new window.....
parent.right.location.target = "right";
parent.right.pathname = "hello.doc";
Please help me out. Any help would be greatly appreciated. Thanks. Jacob
parent.right.location.target = "right";
parent.right.pathname = "hello.doc";
Please help me out. Any help would be greatly appreciated. Thanks. Jacob