The HTMLTableElement.deleteCaption()
method removes the <caption>
element from a given <table>
. If there is no <caption>
element associated with the table, this method does nothing.
The HTMLTableElement.deleteCaption()
method removes the <caption>
element from a given <table>
. If there is no <caption>
element associated with the table, this method does nothing.
js
deleteCaption()
None.
None (undefined
).
This example uses JavaScript to delete a table's caption.
html
<table> <caption> This caption will be deleted! </caption> <tr> <td>Cell 1.1</td> <td>Cell 1.2</td> </tr> <tr> <td>Cell 2.1</td> <td>Cell 2.2</td> </tr> </table>
js
let table = document.querySelector("table"); table.deleteCaption();
Specification |
---|
HTML Standard # dom-table-deletecaption-dev |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
deleteCaption |
1 | 12 | 1 | 5.5 | ≤12.1 | 3 | 4.4 | 18 | 4 | ≤12.1 | 1 | 1.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteCaption