Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
cpanon #1
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
-
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... -
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... -
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... -
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 -
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... -
rilkesf #2
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



Reply With Quote

