In my page I have a button.When I click on it ,it should open a window .On that window there is another button.When i click on that button,i need to trigger an action in the parent window.Is there any way to do that.I tried using the window.opener() property as follows....
a = window.open('myPage.html','_blank','width = 100,height= 200') ;
a.document.getElementById('button').onClick = 'javascript:alert(1)';
but it is not working.
Also, can i access window.opener() in the newly opened window...