Forum Moderators: open
I've found a couple of references but they're way to complicated for my JavaScript experience...
Anyone got any simple code sample that demonstrates how to do this? I've wasted a couple of days trying to sort it out myself and need the direction from some of you experts out there.
Thanks in anticipation.
Mick
I assume by child window you mean a window that was opened by code in the opener window, and the opener window is the parent window.
If so, you can use the following code in the child window:
window.opener.location.reload();window.close()
window.opener is a reference to the window that opened the current window.
ajkimoto