Help With Forms Please

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Help With Forms Please

    Sorry for this, this is my first post and have been unsuccessful at finding the
    answere. Im trying to make two forms. One to be typed in but i want the other
    form to have the same words appear as I enter text in one. For example I have
    two text boxes and need it to appear so that when hosted, the user will be able
    to type in one box and it will appear in both text boxes. Is this possible?

    AftermathDesignz Guest

  2. Similar Questions and Discussions

    1. FORMS - printing and emailing interactive forms
      I'm using Acrobat 7 Pro on a Mac 10.4.8. I would like to create an interactive (order) form for my client to post on her website which her...
    2. Converting existing forms to the Flash forms
      I have forms and I change all the tags on them, but they don't change to the new 'Flash forms' in CFMX 7. Any ideas on this?
    3. Advanced>Forms>Export Forms Data is grayed out
      version 6.0.0 ¿ How do I activate this option ?
    4. Web Forms VS Windows Forms
      What can a windows form do that a web form cannot?
    5. appletviewr plus forms 9i - crash on forms service
      I'm trying to find workaround of the problem forms losing focus on IE6.0 on Windows XP using Jiniator. So I am trying to use appletviewer instead...
  3. #2

    Default Re: Help With Forms Please

    You can do this with javascript.

    <form name="myform">
    <textarea name="text1"
    onblur="document.myform.text2.value=this.value"></textarea>
    <textarea name="text2"></textarea>
    </form>

    This will change the text in the 'text2' textbox to what is in the 'text1'
    box. The change occurs as soon as focus is removed from 'text1'.


    rilkesf Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139