Hello,
I have a nested frames page where the variable gets passed all the way to the highest level just fine but then I want to pass it down a different branch and I can't quite get it.
I have tried many different combinations of the following
with no luck:
HlpLoc is the variable being passed up and it does arrive just fine. PassOn is a function in a child window. (Frame#1 header / appheader.html) The variable never arrives because the code below is faulty somehow
<script language="javascript">
var HlpLoc = ""
function PassLoc(HlpLoc)
{
self.header.PassOn(HlpLoc)
}
</script>
</head>
<frameset rows="100,*" border="0" marginwidth="0" marginheight="0">
<frame name="header" src="appheader.html" scrolling="no" noresize frameborder="0" marginwidth="0" marginheight="0">
<frame name="body" src="appfrmbod.html" scrolling="no" noresize frameborder="0" marginwidth="0" marginheight="0">
</frameset>
Any input or the proper way to pass variable down would be appreciated.
I have a nested frames page where the variable gets passed all the way to the highest level just fine but then I want to pass it down a different branch and I can't quite get it.
I have tried many different combinations of the following
with no luck:
HlpLoc is the variable being passed up and it does arrive just fine. PassOn is a function in a child window. (Frame#1 header / appheader.html) The variable never arrives because the code below is faulty somehow
<script language="javascript">
var HlpLoc = ""
function PassLoc(HlpLoc)
{
self.header.PassOn(HlpLoc)
}
</script>
</head>
<frameset rows="100,*" border="0" marginwidth="0" marginheight="0">
<frame name="header" src="appheader.html" scrolling="no" noresize frameborder="0" marginwidth="0" marginheight="0">
<frame name="body" src="appfrmbod.html" scrolling="no" noresize frameborder="0" marginwidth="0" marginheight="0">
</frameset>
Any input or the proper way to pass variable down would be appreciated.