newbie javascript help

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

  1. #1

    Default newbie javascript help

    Hello
    How can I assign a value to, e.g. a text edit box named test? When I create a
    function testWriteln() that has document.test.value="hello"; and fire it off an
    onClick event nothing happens. What am I missing? Any enlightment welcomed.

    cpanon Guest

  2. Similar Questions and Discussions

    1. Newbie help on Javascript required
      Hi, first time poster and Javascript Newbie. I have Adobe Acrobat version 8 Professional Lets say I have a two page PDF document . On page 1 I...
    2. Newbie:Is Javascript validation really the best way to go?
      Hello to all, I remember reading somewhere that JavaScript validation is superior to CF validation and not to even use CF for that. Is this...
    3. Newbie Javascript issue
      I have a situation where rather than send an ID variable across as a url I'm trying to send it over as a form variable. (I know - that is probably...
    4. Newbie needs a bit of help getting a flash movie into some javascript
      I have a website under development and it uses javascript. I need to display a flash movie within the javascript but the code just doesn't seem to...
    5. Javascript Newbie
      I would like to add different values to form fields if the information has not been entered. With the above script it applies a value of nbsp; to...
  3. #2

    Default Re: newbie javascript help

    U got to learn about JavaScript DOM. go through the link
    [url]http://www.informit.com/articles/article.asp?p=29878[/url]

    U can either access an element value through..
    window.document.formname.elementname.value = 'value';

    or

    window.document.getElementById('test').value = 'value';

    or

    window.document.getElementByName('test').value = 'value';

    FlashingGuy 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