May 21, 2004 #1 meeble Programmer Sep 24, 2002 137 GB I have a page - when you click a link on it, a pop up opens. If the user closes the pop up by clicking on the X in the top right hand corner, can you make this refresh the main window the pop up came from? Cheers James
I have a page - when you click a link on it, a pop up opens. If the user closes the pop up by clicking on the X in the top right hand corner, can you make this refresh the main window the pop up came from? Cheers James
May 21, 2004 1 #2 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB Try something like this in your popup: Code: <body onunload="window.opener.document.location.reload(true);"> Hope this helps, Dan Upvote 0 Downvote
Try something like this in your popup: Code: <body onunload="window.opener.document.location.reload(true);"> Hope this helps, Dan
Apr 1, 2005 #3 sunila7 Technical User Apr 11, 2001 1,087 US Thanks!..That is what I was looking for.... Sunil Upvote 0 Downvote