I am working on an ap written by a vendor. The ap uses frames. The vendor is not available for questions.
I am able to use javascript provided by the vendor to get the page I want to open in the parent frame and can even get to the appropriate anchor on the page.
Problem is, the page in the parent frame jumps right to the anchor and doesn't refresh, so session variables set in the child page aren't seen by the parent page.
How can I get the parent frame to 1) refresh, 2) then go to the appropriate anchor?
Here is the javascript in the child frame which calls the page in the parent frame:
<script language="JavaScript">
window.parent.frames[2].location = "../dsp/rs_main.cfm?#injections";
document.location="../dsp/blankpage.cfm";
</script>
Thanks for any help you can give!
Dave
I am able to use javascript provided by the vendor to get the page I want to open in the parent frame and can even get to the appropriate anchor on the page.
Problem is, the page in the parent frame jumps right to the anchor and doesn't refresh, so session variables set in the child page aren't seen by the parent page.
How can I get the parent frame to 1) refresh, 2) then go to the appropriate anchor?
Here is the javascript in the child frame which calls the page in the parent frame:
<script language="JavaScript">
window.parent.frames[2].location = "../dsp/rs_main.cfm?#injections";
document.location="../dsp/blankpage.cfm";
</script>
Thanks for any help you can give!
Dave