'opener' Syntax and Note : opener « Javascript Properties « JavaScript Reference

'opener' Syntax and Note

Note:

Read and write property. 
Who is the opener.
    

Syntax:

window.opener = value             
It is possible to use the following syntax to reach deeper into the 
heritage of the window:

window.opener.opener...
window.opener.document.getElementById("elementID").propertyName = value

    

      
      








Related examples in the same category

1.'opener' Example
2.'opener' is applied to