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

  1. #1

    Default Javascript question

    I have a hidden field on a form used for the server. It submits an email
    address to the server. The server then process the form (through cgi-bin)
    and sends the form contents to the email adress. This is that line:

    <input type="hidden" name="whither" value="XXX@YYY.org, [email]XXX@YYYY.edu[/email]">

    Can I create a form field, where the user can enter his/her email address,
    and dynamically update the above line with a new email address? Anyone know
    a Javascript way?

    --
    Seth Meranda
    smeranda<AT>unlnotes<DOT>unl<DOT>edu



    Seth Meranda Guest

  2. Similar Questions and Discussions

    1. Simple Javascript question
      Hi This works the first time I click the button but wont work after that - not sure why, aim is to make it a toggle really function...
    2. JavaScript code question
      I have had some trouble with this code. This is the code I used to tie in the street address with the combo box selection: var gstreet = new Array...
    3. Javascript Question...
      Hi guys, Just wondering the following. If i have a page like hello.html?id=hi Can I use the variable "id" to call an script include? So for...
    4. Javascript and PHP/MySQL Question
      I want to write a listbox sized to 8 rows - I want to show summaries in this listbox and when an item is selected, below I want to show the details...
    5. Simple JavaScript question...
      What's the command to make something happen as soon as a page is loaded? Thanks! CS
  3. #2

    Default Javascript question

    Does anyone know a news group where I can list a javascript question?
    Thanks...


    Sammy the Bull Guest

  4. #3

    Default JavaScript Question

    How can I re-write this code to move the JavaScript away from the body tag and
    still accomplish the same thing?

    <body onLoad="document.add_user.fullname.focus();">
    <form name="add_user" method="post" action="">
    <input type="text" id="fullname" name="fullname">
    </form>

    I am getting a runtime error in IE 6: "document.add_user.fullname is null or
    not an object." Any help is greatly appreciated.

    jip 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