JavaScript Coder

text box

How to set the value of a form element using Javascript

As we have seen in earlier articles, in order to work with forms in JavaScript, it is imperative to obtain references to the form object and its elements. In this article, we will be using the forms collection of the document object and the elements collection of the form object to set the values of the form elements. The syntax for accessing the form object is as below: oFormObject = document.

Continue Reading →

How to set the value of a form field using Javascript PII

This is in continuation of the article: set the value of a form element using Javascript. In this section, we will see how to set the value of other input fields like hidden field, drop down list etc Setting the value of a hidden field using Javascript As in the case of ’textarea’ and ’text’ input elements, in order to set the value of a hidden input element in a form, we can use the following syntax:

Continue Reading →