I would like to merge columns for a given row using the "colspan" attribute. However, this seems to cause a "Cannot read property 'nodeName' of undefined" error. Is there a way to fix this?
<table>
<thead>
<tr>
<th filter='false'>FIRST NAME</th>
<th filter='false'>LAST NAME</th>
<th filter='false'>STATE</th>
<th filter='false'>GENDER</th>
</tr>
</thead>
<tbody>
<tr>
<td>JOHN</td>
<td>SMITH</td>
<td>VIRGINIA</td>
<td>MALE</td>
</tr>
<tr>
<td colspan="4">
Address Info goes here
</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th filter='false'>FIRST NAME</th>
<th filter='false'>LAST NAME</th>
<th filter='false'>STATE</th>
<th filter='false'>GENDER</th>
</tr>
</thead>
<tbody>
<tr>
<td>JOHN</td>
<td>SMITH</td>
<td>VIRGINIA</td>
<td>MALE</td>
</tr>
<tr>
<td colspan="4">
Address Info goes here
</td>
</tr>
</tbody>
</table>