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 :-
the parent window can only be accessed using the parent variable. The following modification to opener1 function should make this possible
parent
function opener1(){ try{ if(parent.window.opener != null && !parent.window.opener.closed) { parent.window.opener.test1(); } }catch(e){ alert(e.description);} }