I'm trying to get the counts of <tr> tag from which contained in <th>
for example there's these tags inside a table :
<th><tr></tr></th>
<th></th>
<th></th>
<th></th>
the javascript :
var table = document.getElementById(tableId);
var tbody = table.getElementsByTagName("tbody")[0];
var thead = tbody.getElementsByTagName("th");
var rowCount = 0;
for (i = 0; i < thead.length; i++) {
if (thead[i].getElementsByTag("tr") === 'unidentified') rowCount++;
}
thead variable value should be = [tr], [ ], [ ], [ ]
but the rowCount value is 4, it should've been 1
I'd tried to figure what is the actual value of [ ] //the seemingly empty element
I'd tried comparing thead[i].getElementsByTag("tr") with null, empty, "", "[]", "[ ]" but the results is false
theadandthare two different things. Athelement should not containtrelements. Normally,theadcontainstrs that containths. The browser might try to normalize malformed markup like this. – bažmegakapa Feb 6 at 8:00$('#'+tableId+" > tr").size()– Narek Feb 6 at 8:05getElementsByTagNamereturns an empty NodeList if no elements are found, notundefined(and certainly not'unidentified'). So your check should be something likeif (thead[i].getElementsByTagName("tr").length > 0). – bažmegakapa Feb 6 at 8:08