jscript/html. howto address cells

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

  1. #1

    Default jscript/html. howto address cells

    Hello
    New to jscript and I want to control where I write output. From examples I
    can create <img> and give it name and then use js to write to it. However I
    want to read/write to text boxes, be they in forms or in tables. How can I
    address cells in a table, form based text fields or place "raw" text edit
    objects from jscript? I can place all these with DW, I just dont know where to
    look for how to address them and then how to reference them in the DOM model
    for js. Any and all enlightment welcomed.

    cpanon Guest

  2. Similar Questions and Discussions

    1. Locking cells in HTML Templete - Dreamweaver
      Hello, I have created a HTML template using Dreamweaver. In the template I have created a layout table (set to 800 pixels wide) and cells within...
    2. Howto loop through table cells in a selection
      Hello, I'm new to DW development, so I wonder if someone could help me. Say my user selects a few cells in a column in a table, and then runs my...
    3. Howto use php as filter for HTML files? Curl?
      Hi, In short, how to modify selected tags/sections of a HTML file, using PHP as the "modifier"/filter? I would have thought this was a very...
    4. HowTo export the VisualStudio Project Code to HTML Viewable like IBUYPORTAL
      Hello, can I export my code in VisualStudio to HTML like IBUYPORTAL? Thanks, Andreas
    5. HOWTO change a subscriber email address ?
      I need to change my email address immediately. Please advise me how to do it. Thank you. -- To UNSUBSCRIBE, email to...
  3. #2

    Default Re: jscript/html. howto address cells

    To access text field values, use the construct:
    var value = document.form_name.text_field_name.value;

    to write to a text field, you just reverse it:
    document.form_name.text_field_name.value = 'enter your text here';



    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