I am having trouble passing variables between frames. The variable I want to pass is the parameter in a function. For example, if I have the following function in a static frame:
<script>
function whatever(vrble)
{do this stuff}
</script>
...then I would want the "vrble" to be read in an onLoad command in my main frame.
Basically, I am trying to get the scrollbar color that is set when you click on a link in my static frame to carry over to all of the other pages as they are loaded. I know I can put an onLoad in all of my other pages, and reference the vrble setting from my static frame, but I can't figure out how to pull it over. Is there something I need to put in my function that will write the parameter vrble to a global varialbe? Any help is appreciated.
<script>
function whatever(vrble)
{do this stuff}
</script>
...then I would want the "vrble" to be read in an onLoad command in my main frame.
Basically, I am trying to get the scrollbar color that is set when you click on a link in my static frame to carry over to all of the other pages as they are loaded. I know I can put an onLoad in all of my other pages, and reference the vrble setting from my static frame, but I can't figure out how to pull it over. Is there something I need to put in my function that will write the parameter vrble to a global varialbe? Any help is appreciated.