Javascript examples for DOM HTML Element:TableData
The rowSpan property sets or gets the rowspan attribute, which sets the number of rows a table cell should span.
Set the rowSpan property with the following Values
Value | Description |
---|---|
number | Sets the number of rows a cell should span |
A Number, representing the number of rows a table cell should span
The following code shows how to change the number of rows a table cell should span:
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style>/*from w w w . jav a 2 s .co m*/ </head> <body> <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td id="myTd" rowspan="2">January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$100</td> </tr> </table> <br> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myTd").rowSpan = "1"; } </script> </body> </html>