Dec 14, 2001 #1 jalbao Programmer Joined Nov 27, 2000 Messages 413 Location US i have a child pop up that refreshes the parent window. i use the opener.location.reload() method on the child popup page. is it possible to pass a url variable through the opener.location.reload() to the parent window? tia
i have a child pop up that refreshes the parent window. i use the opener.location.reload() method on the child popup page. is it possible to pass a url variable through the opener.location.reload() to the parent window? tia
Dec 14, 2001 #2 jaredn Programmer Joined Sep 1, 1999 Messages 1,506 Location US Not really, but you can set a variable in the main window from the child window: opener.varibalename=somevalue or, grab the variable from the childwindow: if(childwindow&&!childwindow.closed) variablename = childwindow.somevalue jared@eae.net - http://webfx.eae.net Upvote 0 Downvote
Not really, but you can set a variable in the main window from the child window: opener.varibalename=somevalue or, grab the variable from the childwindow: if(childwindow&&!childwindow.closed) variablename = childwindow.somevalue jared@eae.net - http://webfx.eae.net