IT Placement Papers Web Technologies Java Script
This category contains Java Script Interview Questions and Answers |
How to Accessing Elements using javascript?
|
|
|
|
|
o do something interesting with HTML elements, we must first be able to uniquely identify which element we want. In the example
We can use the "getElementById" method (which is generally preferred)
document.getElementById("useless").style.color = "red";
or we can use the older hierarchical navigation method,
document.forms[0].mybutton.style.color = "blue";
Notice that this uses the "name" attribute of the element to locate it.
Only registered users can write comments. Please login or register.
|