Discussion :: Javascript - CS
- Which of the following can be used to select HTML elements based on the value of their name attributes?
Answer : Option B
Explanation :
To select HTML elements based on the value of their name attributes, you can use the getElementsByName() method of the Document object:
var radiobuttons = document.getElementsByName("favorite_color");
Be The First To Comment