Which of the following can be used to select HTML elements based on the value of their name attributes?
A. getElementByName()
B. getElementsByName()
C. getElementsName()
D. getElementName()
Answer: Option B
Solution (By Examveda Team)
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");

Join The Discussion