Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- <table id="table00">
- <tr id="trOne">
- <td>Item A</td>
- <td>Item B</td>
- <td>Item C</td>
- </tr>
- </table>
- */
- doChildCount("trOne");
- function doChildCount(strId){
- var thisChildCount = document.getElementById(strId).childElementCount;
- console.log(thisChildCount);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement