W3Schools.com

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 type="text/javascript">
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 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).

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
Download XML Editor
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