Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

javascript

Status
Not open for further replies.

transtech

Programmer
Aug 21, 2001
23
US
Hi all,

I have a page that has a link that will generate a popup page when you click it, This popup has a form and when i click submit i want to reload the opener page so i can get the new data from it. Can anyone please help me if you have the answer?

Thanks alot!

evan
 
opener.reload() --------------------------------------------------
Goals are dreams with deadlines
 
To correct that...
Code:
opener
Code:
.location
Code:
.reload()
bluebrain.gif
blueuniment.gif
 
I use the opener.location.reload() and it works in IE 5.5, but not in IE5.0; MAC IE5.0; or Netscape 4.76. Does anyone have a solution?
 
location.reload() wont work in browsers except ie5.5 and up.

try using opener.location.replace(opener.location); Robert Carpenter
questions? comments? thanks? email me!
linkemapx@hotmail.com
Icq: 124408594
online.dll

AIM & MSN: robacarp
 
you could also try
Code:
document.location = document.location
--------------------------------------------------
Goals are dreams with deadlines
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top