Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

  1. Which of the following can be used to select HTML elements based on the value of their name attributes?

  2. A.

     getElementByName()

    B.

     getElementsByName()

    C.

     getElementsName()

    D.

     getElementName()

    View Answer

    Workspace

    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