Return the number of columns a specific table cell should span:
var x = document.getElementById("myTh").colSpan;
Click the button to return the value of the colspan attribute of th with id "myTh".
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style>/*w w w . j a va 2 s. c o m*/ </head> <body> <table> <tr> <th id="myTh" colspan="2">Month</th> <th>Savings</th> </tr> <tr> <td>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(x) { var x = document.getElementById("myTh").colSpan; document.getElementById("demo").innerHTML = "The value of colspan is: " + x; } </script> </body> </html>