Hi,
in forms, we can easly call any property for it.
e.g
suppose we have a text field, its name is mytext, belongs to a form, its name myform. So we can assign its value in JavaScript or any other property like bgcolor etc as
document.myform.mytext.value="Hi this's my value"
The question is,
How can I do some thing like this for any other html tag, like table or font?
in forms, we can easly call any property for it.
e.g
suppose we have a text field, its name is mytext, belongs to a form, its name myform. So we can assign its value in JavaScript or any other property like bgcolor etc as
document.myform.mytext.value="Hi this's my value"
The question is,
How can I do some thing like this for any other html tag, like table or font?