Javascript DOM HTML TableData colSpan Property set

Introduction

Change the number of columns a table cell should span:

document.getElementById("myTd").colSpan = "1";

Click the button to change the value of the colspan attribute, from 2 to 1, of td with id myTd.

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>//from   ww  w .  j av a2  s.co m
</head>
<body>
<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td id="myTd" colspan="2">January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$100</td>
  </tr>
</table>
<br>

<button onclick="myFunction()">Test</button>

<script>
function myFunction() {
  document.getElementById("myTd").colSpan = "1";
}
</script>

</body>
</html>

The colSpan property sets or gets the value of the colspan attribute.

The colspan attribute sets the number of columns a table cell should span.

The colSpan property accepts and returns a number type value.




PreviousNext

Related