I have looked for awhile and cannot find an answer that fits my needs. I have a page that pops a window (window.open), logs the user in (creates a cookie, set session) then redirects to another page. While the modal is redirecting, I would like to refresh the parent page, so all the good stuff that I just did will be recognized by the parent. I have tried window.opener and stuff like that. Can someone help me out a little? Thanks
|
feedback
|
|
Here's a live example demonstrating the child calling back to a function on the parent, and also manipulating the parent directly. The full code for this is quoted below. But that example didn't do exactly what you said, so I've done this one as well, which has the child refreshing the parent page via Parent code of first live example:
(You don't have to use a scoping function as I did above, but it's useful to keep your globals contained.) Child code of first live example:
| ||||
|
feedback
|
|
If none of the other suggestions work (Remember to test in all major browsers), you can also try passing a reference of the parent window to the child window explicitly. Because | |||
feedback
|
|
window.parent.top.location = window.parent.top.location; (or something similiar to that will do it) | |||
|
feedback
|
window.parent.frames[0]or similar developer.mozilla.org/en/DOM – DavidYell Sep 21 '10 at 16:23