I am having two html pages..i am calling parent window from child..All things works great.but in Chrome it fails..let me know the reason..
test1.html :-
You can try my code:
window.opener.document.location.href = url;
This will work both IE and Chrome.
window.opener.location.href = 'test.html';
This would open the page "test.html".
and you can close the parent window once its opened.
Don't forget to mark my answer as correct if its works.