Click to See Complete Forum and Search --> : [RESOLVED] refreshing parent from frame..


IceRegent
05-29-2007, 04:49 PM
Hello. I have a website using frames, which I would like to have the main parent frame refreshed when an individual frame completes its script in php. What is the simplest and/or preferred method for refreshing the parent frame from withing an individual frame?

Thanks;
IceRegent

IceRegent
05-29-2007, 05:18 PM
I found a java script that does the refresh, so, I was able to place this script at the end of my php processing, and it refreshes the main template parent.

Javascript is:

<script type="text/JavaScript" language="JavaScript">
<!--

parent.frames.location.href = 'http://www.website.com/index.php';

</script>