THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML DOM TableData Object


TableData Object

The TableData object represents an HTML <td> element.

Access a TableData Object

You can access a <td> element by using getElementById():

Example

var x = document.getElementById("myTd");
Try it Yourself »

Tip: You can also access a <td> element by searching through the cells collection of a table row.

Create a TableData Object

You can create a <td> element by using the document.createElement() method:

Example

var x = document.createElement("TD");
Try it Yourself »

TableData Object Properties

Property Description
abbr Not supported in HTML5.
Sets or returns the value of the abbr attribute
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the horizontal alignment of the content in a data cell
axis Not supported in HTML5.
Sets or returns a comma-separated list of related data cells
background Not supported in HTML5. Use style.background instead.
Sets or returns the background image of a data cell
bgColor Not supported in HTML5. Use style.backgroundColor instead.
Sets or returns the background color of a table
cellIndex Returns the position of a cell in the cells collection of a table row
ch Not supported in HTML5.
Sets or returns an alignment character for a data cell
chOff Not supported in HTML5.
Sets or returns the horizontal offset of the ch property
colSpan Sets or returns the value of the colspan attribute
headers Sets or returns the value of the headers attribute
height Not supported in HTML5. Use style.height instead.
Sets or returns the height of a data cell
noWrap Not supported in HTML5. Use style.whiteSpace instead.
Sets or returns whether the content in a cell can be wrapped
rowSpan Sets or returns the value of the rowspan attribute
vAlign Not supported in HTML5. Use style.verticalAlign instead.
Sets or returns the vertical alignment of the content within a cell
width Not supported in HTML5. Use style.width instead.
Sets or returns the width of a data cell

Standard Properties and Events

The TableData object also supports the standard properties and events.


Related Pages

HTML tutorial: HTML Tables

HTML reference: HTML <td> tag