Reading the controls using getElementsByTagName
is very common practice to read the element. However I would like to know that whether we can trust the order in which the elements are returned using this function.
Does it return elements in the order in which they are placed on the UI? Or it can return random elements too where we can't trust on the sequence at other times?
var labels = document.getElementsByTagName("label"), i;
for(i=0;i<labels.length;i++)
{
if(i == 1)
labels[i].innerText = "First Value";
else if (i==2)
labels[i].innerText = "Second Value";
if (labels[i].innerText == "NULL") {
labels[i].innerText = "Empty";
}
}
getElementsByTagName() method returns a live HTMLCollection of elements with the given tag name. All descendants of the specified element are searched, but not the element itself. The returned list is live, which means it updates itself with the DOM tree automatically.
Syntax: var elements = document. getElementsByTagName(name);
The getElementsByTagName() method returns a collection of all elements with a specified tag name. The getElementsByTagName() method returns an HTMLCollection.
getElementsByTagName - the method name itself implies that it will return multiple elements - i.e. an array. The method always returns an array, with the length equal to the number of matching elements. As such you must always access the elements by the index of the element in the array.
This function always return elements in the same depth-first order.
This is the order, in which they appear in HTML tree structure.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With