I need to test a particular innerHTML string on a webpage that loads user information. My issue is, the location [14] of this element varies based on other account details being present or not. (i.e. sometimes this innerHTML is [15] or [16]) The innerHTML has no identifier other than class name "style16".
Moreso the innerHTML changes between each account, and thus why I need to test its value.
Do I need to create some sort of var to reference this element location? If so, how do I make it.
Here's the HTML:
<tr>
<td class="style16">Zip:</td>
<td>12345</td>
</tr>
<tr>
<td class="style16">CountryCode:</td>
<td>TH</td>
</tr>
I am new to DOM and Javascript so apologies if this is confusing.
Thanks in advance
Use like this:
Note: the bigger the DOM to cycle trough the longer it needs. So to improve performance, may start with a parent element that contains the searched one for shure e.g find(document.getElementById("parent"))
If you know the class of the parent element, you can do this: