In some cases to make the parent window to load a different URL ( from IFRAME and pop etc.,), use
parent.location.reload();
To get the parent URL as a string (in cases to modify parent URL), use this,
parentlocation = document.referrer;
window.top.location.href = "http://www.site.com";
To just refresh the parent window useparent.location.reload();
To get the parent URL as a string (in cases to modify parent URL), use this,
parentlocation = document.referrer;
No comments:
Post a Comment