I've been working in some fixes where I'm forced to use a new window to fill part of a form. My approach is to manipulate parent window's DOM as a visual reference of the users selection.
window.opener.jQuery('#parent-div');
The code above works in Chrome/Firefox. I see, deja vu style, this doesn't work in IE/EDGE. My nightmare once again.
Error SCRIPT16386: No such interface supported
jquery.js (5665,4)
Edge error links this useless URL. jQuery version 1.11.3
I've tried many flavors of selecting parent div. Native and jQuery as described here here or here, and many others without any luck.
Any thoughts? Thank you