Hello, I have a script that refreshes the parent window after some processing work is done in a pop up window: <script language=""javascript1.2"">self.opener.location.reload();</script> Code (markup): Instead of reloading, does anyone know how I can send the opener location to a specified url? THanks?
nevermind...got it Here's the answer... <script language=""javascript1.2"">self.opener.location.href='default.asp';</script> Code (markup):