The HTMLTableElement.caption
property represents the table caption. If no caption element is associated with the table, it can be null
.
SyntaxEdit
string = table.caption
ExampleEdit
if (table.caption) {
// do something with the caption
}
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'HTMLTableElement.caption' in that specification. |
Living Standard | No change from HTML5 |
HTML5 The definition of 'HTMLTableElement.caption' in that specification. |
Recommendation | No change from Document Object Model (DOM) Level 2 HTML Specification |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLTableElement.caption' in that specification. |
Recommendation | No change from Document Object Model (DOM) Level 1 Specification |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLTableElement.caption' in that specification. |
Recommendation | Initial definition. |
Browser compatibilityEdit
See alsoEdit
- The interface implementing this property:
HTMLTableElement
.