Jump to content

why is js ignoring my td elements?


garry27

Recommended Posts

i've been on this for literally several hours. why is js skipping past the td elements in my table, straight to the text nodes when i use:

[code]
  var tbl = document.getElementById('publist');  // elm.parentNode;
  var nodeX = tbl.rows[0].firstChild;
  alert (nodeX.nodeType);  //displays 3
[/code]

and then when i try to do alert (nodeX.nodeValue) it always displays a blank box.
Link to comment
https://forums.phpfreaks.com/topic/30949-why-is-js-ignoring-my-td-elements/
Share on other sites

A newline inside a tr is a textNode, and the first child of the tr if it immediately follows the opening tag.
IE doesn't see it, or any empty nodes, but the other browsers will. You can use the (tr)element.getElementsByTagName('td')
nodelist, or  keep the newlines outside the table rows in the source.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.