Greetings,
I am in search of the javascript code to reload one window (the main one) from another window. Is this possible?
And help would be greatly appretiated,
Thanks.
Printable View
Greetings,
I am in search of the javascript code to reload one window (the main one) from another window. Is this possible?
And help would be greatly appretiated,
Thanks.
do you mean like reload the main frame from another frame. If so, use this:
parent.frameName.location.reload() where frameName is the name of the frame youw ant to reload.
If you opened up a popup window from the main window, and you want to reload that main window, try:
window.opener.location.reload()
If those suggestions don't help, try to be more specific.
aDog :cool: