I don't think this is an actually term but it's the only way i can think of explaining what i'm talking about. I need to refresh the grandparent page on the grandchild page without the use of buttons or clicks, just on unload basically. I hope this is clear i'll try and make a diagram

Grandparent page: Enter Timesheet Info, opens Parent page when you want to edit info.

Parent page: Edit Timesheet Info, hit save which opens the Child page.

Child page: Updates data in database, this is where i need to refresh the "Grand Parent" page.

Hope this is clear, and thanks in advance for any help.

M

    So, would this work:

    <body onLoad="window.parent.parent.location.reload()">

      Figured it out, had to use window.parent.opener.location.reload(); Thanks for the help anyway.

        Write a Reply...