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

link|improve this question
3  
thead and th are two different things. A th element should not contain tr elements. Normally, thead contains trs that contain ths. The browser might try to normalize malformed markup like this. – bažmegakapa Feb 6 at 8:00
Maybe "undefine"? – Hadas Feb 6 at 8:01
You can use jQuery $('#'+tableId+" > tr").size() – Narek Feb 6 at 8:05
@Narek Have you seen a jQuery tag? – bažmegakapa Feb 6 at 8:06
getElementsByTagName returns an empty NodeList if no elements are found, not undefined (and certainly not 'unidentified'). So your check should be something like if (thead[i].getElementsByTagName("tr").length > 0). – bažmegakapa Feb 6 at 8:08
show 5 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.