-
Ok Here Is My Question
I have 4 frames left corner top and main.
What i would like to do is the left has all my buttons for my links and i can link one document to the main frame but i would also like the top frame to change as well when clicking the link and i do not know what i have to do to get this done. I am using dreamweaver 3 your help would be greatful thank you
Lee
-
I believe that you will have to go into the HTML and do it... What is it that you would like to change in the top frame? An image? I'll think about it and brb.
-
Thanks for the Email. One way would be to have multiple target frames from the button (main and top for example)and to have multiple files that will open in the targeted frames.... How that is done... Well I am looking at the moment... I will hopefully find the code. If not then I am sure that there is a more proficient coder than myself in the forum! :) I'll be back!
-
Try using a JavaScript:
<script><!--
function DblLoad(l1,l2) {
// x1 & x2 number (beginning with 0) or name of
// target frame
frames[x1].location = l1;
frames["x2"].location = l2;
}
//--></script>
You call it this way:
<a href="javascript:DblLoad("location1","location2")" target="_self">HERE</a>
Hope the answer isn't too late... ;)
-
Sorry about the :D
It should be a ":" and a "D"... ;)