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
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.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.