send from a window to another

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Driftace
    New Member
    • Jul 2006
    • 1

    send from a window to another

    I have a form on a page. On that page is an iframe with a list of pictures (shown). I would like that when I click on a picture it will send the picture-name to a field in the form.

    Can anybody give me a hint on how to solve that?

    Greatfully appreciated.
  • sashi
    Recognized Expert Top Contributor
    • Jun 2006
    • 1749

    #2
    Hi there,

    are you working on a static .HTML pages?

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      Use top or parent to refer to the parent page from the iframe and then use
      Code:
      document.getElementById(fieldID)
       //or
      document.forms[formName].elements[fieldName]
      to refer to the field.

      Comment

      Working...