I often use the method getElementById("id1");
in my methods. I use it to find certain elements in my HTML. I wonder if I need to be concerned about how much I use it if it has to search the entire DOM every time.
How does this method work? Does it parse the DOM and return the element when it is found, or does it have all those values indexed somehow and so is able to return more quickly?
P.S. I am curious about the method in general, but I am using an Android WebView if that makes any difference.
getElementById("id1");
==$('#id1')
– MuchgetElementById
plus constructing a set etc. – Bille