Thanks! works like a charm!
On Nov 8, 11:43 am, tlphipps <[EMAIL PROTECTED]> wrote:
> The only way I have found to do this is by using the "top.document"
> reference.
> e.g. $("#myformfield", top.document).val('myvalue');
>
> On Nov 8, 10:57 am, joel352000 <[EMAIL PROTECTED]> wrote:
>
> > Hello--
> > I am a jquery newbie. I have a file upload form I am loading into a
> > thickbox iframe. After the file is uploaded, I want to write the name
> > of the file uploaded to a form field on the parent window. This was
> > easy to do with opener.document.formname.fieldname.value="value"
> > without JQuery. But I am having a hard time seeing how to do this the
> > JQuery way. Do I get a reference to the parent window via
> > "self.parent"?
> > Thanks in advance for any help.