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



Reply With Quote

