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...

link|improve this question

71% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.