window.opener property from child window to parent window
843836Nov 18 2003 — edited Nov 19 2003Hi
When communicating between the child (popup) window to the parent window works fine as long as we pass the static reference to the window.opener
Example :
Main Page
form name = staticform
input name = col1
Popup Page
javascript :
window.opener.staticform.col1.value = some value
How can I use a dynamic reference for the staticform.col1 in the window.opener property to post the value back to the parent window ?
thanks for the help
sarma