TableData rowSpan Property - Return the number of rows a specific table cell should span: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:TableData

Description

TableData rowSpan Property - Return the number of rows a specific table cell should span:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
}
</style>//  w ww.j  a v a 2 s  .c o  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() {
    var v = document.getElementById("myTd").rowSpan;
    console.log(v);
}
</script>

</body>
</html>

Related Tutorials