How can set location of parent from pop up window opened by iframe.

Govind Malviya picture Govind Malviya · Sep 24, 2011 · Viewed 8.9k times · Source

I want to set location of parent window from pop up window opened by iframe.

I am writing this line of code in javascript but it is not working.

window.opener.parent.location = '../Account/';

Answer

Pa.M picture Pa.M · Sep 24, 2011

try

window.opener.parent.location.href = '../account/';