You could always use the getElementByID() function. Add an ID value to your input field
(<input id="some_id" ... />), and access it by
Code:
getElementByID('some_id').value = 'test';
// or if you need to access it several times
var elem = getElementByID('some_id');
elem.value = 'test';
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
|