Using jQuery from a popup window
I pop up a child window to present a form that lets the user specify options about something they're ordering. The form then needs to be applied to structures on the parent window, so I have code on the popup like
window.opener.document.form1.text.value = txt.value;
I'm just wondering if jQuery will let me access these window.opener elements easier.
Thanks for any suggestions.