Aug 11, 2004 #1 jockey Programmer Nov 18, 2003 34 GB Is there a way that when a popup window is closed you can cange the url of the parent that opened it??
Is there a way that when a popup window is closed you can cange the url of the parent that opened it??
Aug 11, 2004 1 #2 vbkris Programmer Jan 20, 2003 5,994 IN yes in the popup window file: <body ...... onunload="window.opener.location.href='TheLocation'"> Known is handfull, Unknown is worldfull Upvote 0 Downvote
yes in the popup window file: <body ...... onunload="window.opener.location.href='TheLocation'"> Known is handfull, Unknown is worldfull
Aug 11, 2004 #3 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB Try this in your popup: Code: <body onunload="window.opener.location = 'newUrl.html';"> Hope this helps, Dan Upvote 0 Downvote
Try this in your popup: Code: <body onunload="window.opener.location = 'newUrl.html';"> Hope this helps, Dan
Aug 11, 2004 #4 vbkris Programmer Jan 20, 2003 5,994 IN aha, i beat u... Known is handfull, Unknown is worldfull Upvote 0 Downvote
Aug 12, 2004 #5 DreXor Programmer Jun 17, 2003 2,224 US also ... you almost had it written in the question itself... parent.location = "url"; will also work DreX aKa - Robert Upvote 0 Downvote
also ... you almost had it written in the question itself... parent.location = "url"; will also work DreX aKa - Robert