fill textbox from new window

  • Thread starter Thread starter dfetrow410
  • Start date Start date
D

dfetrow410

I ope a new window with javascript, I do a calulation in javascript.
How to I fill a texbox on the opener from the new window?

self.opener.document.forms[0].picFileName.value = cImage

does not seem to worrk???

Dave
 
Uzytkownik said:
I ope a new window with javascript, I do a calulation in javascript.
How to I fill a texbox on the opener from the new window?

self.opener.document.forms[0].picFileName.value = cImage

opener.document.forms[0].picFileName.value = cImage

how do you declare cImage variable?
quote the error message.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top