W3Schools.com

td/th axis Property

td/th Object Reference td/th Object

Definition and Usage

The axis property sets or returns a comma-separated list of category names.

Syntax

Set the axis property:

tdObject.axis="text"

or

thObject.axis="text"

Return the axis property:

tdObject.axis

or

thObject.axis

Tip: There is no default value for the axis property.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The axis property is supported in all major browsers.


Example

Example

Alert the the axis of the table header cells:

<html>
<head>
<script type="text/javascript">
function displayResult()
{
var x=document.getElementById("myTable");
var th=x.getElementsByTagName("th");
for (var i=0;i<th.length;i++)
  {
  alert ("The " + (i+1) + ". column axis is: " + th[i].axis);
  }
}
</script>
</head>

<body>
<table border="1" id="myTable">
  <tr>
    <th axis="car">Name</th>
    <th axis="country">Country</th>
  </tr>
  <tr>
    <td>BMW</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Volvo</td>
    <td>Sweden</td>
  </tr>
  <tr>
    <td>Saab</td>
    <td>Sweden</td>
  </tr>
</table>
<br />
<button type="button" onclick="displayResult()">Get Axis</button>

</body>
</html> 

Try it yourself »


td/th Object Reference td/th Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE