How to access an HTML textbox by a javascript function?
|
|
Set ID property on text box and use document.getElementById() function... Example below:
|
|||||
|
|
Give your textbox an |
|||
|
|
|
document.getElementById('textboxid').value or document.formname.textboxname.value |
|||
|
|
|
First you need to be able to get a DOM(Document Object Model) reference to the textbox:
Notice the Next step is to get the reference in JavaScript:
This will retrieve a HTML Element by its Now the final step is to retrieve the value of the textbox:
The For more reference you might want to check out some stuff over at MDC: |
|||
|
|
|
Very simply, try this:
The variable Remember you must place your script, if written as simply as this, after the textbox ( I hope this helps! |
|||
|
|