Trying to retrieve the value from my child.jsp and pass it to my parent.jsp using
window.opener.document.getElementById("parentId1").value = myvalue;
Despite no errors appearing in the console, the value is not successfully transferring to the parent page.
The child popup window has a URL that begins with,
https://safe.cresecure.net/securepayments.....
while the parent page's URL starts with http://....
. Could this difference in security levels be causing a communication issue between the secure child window and non-secure parent page?
If so, what steps can I take to resolve this problem?