How can I use javascript to refresh a window I have opened with the window.open script? The window has a name already assigned to it. What I want to do is refresh it from a totally unattached html page.
Printable View
How can I use javascript to refresh a window I have opened with the window.open script? The window has a name already assigned to it. What I want to do is refresh it from a totally unattached html page.
hello,
do you mean have window A open window B
and then from window A you trigger window B to refresh
or do you want window B to refresh every x amount of time..?
bsw2112
try window.opener.location.reload(true);
I haven't tested it but I don't see why it wouldn't work if you've opened the window using javascript.