Search w3schools.com:

SHARE THIS PAGE

td/th abbr Property

td/th Object Reference td/th Object

Definition and Usage

The abbr property sets or returns an abbreviated version of the content in a data cell (for non-visual media such as speech or Braille).

If this property is set, the user will only hear the value of the abbr attribute (not the whole content of the cell).

Syntax

Set the abbr property:

tdObject.abbr="text"

or

thObject.abbr="text"

Return the abbr property:

tdObject.abbr

or

thObject.abbr

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


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The abbr property is supported in all major browsers. However, the functionality of this property is not implemented in any of the major browsers.


Example

Example

Get first data cell abbreviation:

<html>
<head>
<script>
function displayResult()
{
var table=document.getElementById("myTable");
alert(table.rows[0].cells[0].abbr);
}
</script>
</head>
<body>

<table id="myTable" border="1">
  <tr>
    <td abbr="def">Keep abbreviated names short.
    Browsers may render them repeatedly.</td>
    <td>cell data</td>
  </tr>
  <tr>
    <td>cell data</td>
    <td>cell data</td>
  </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Get abbreviation</button>

</body>
</html>

Try it yourself »


td/th Object Reference td/th Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]