(Django) I have a table that I am attempting to hide if it is empty. I have mostly achieved this the only issue is that the CSS styling is still present after “removing” the table.
How do I remove all of the CSS styling for a particular element?
code:
JavaScript
x
24
24
1
<table class="post-table" id="table-example">
2
<tr>
3
<th class="table-header" colspan="1" id="tab_header">
4
<h3>ADDITIONAL INFO</h3>
5
</th>
6
</tr>
7
<tbody id="tab_body">
8
{% if post.additional_info != '' %}
9
<tr>
10
<td id="test">{{ post.additional_info }}</td>
11
</tr>
12
{% endif %}
13
</tbody>
14
</table>
15
16
<script>
17
var tbl = document.getElementById("table-example");
18
if (tbl.rows.length == 1) {
19
console.log("IT WORKED");
20
tab_header = document.getElementById("tab_header").innerHTML = "";
21
}
22
console.log(tbl.rows.length);
23
</script>
24
Advertisement
Answer
You can hide whole table, if is empty:
JavaScript
1
3
1
let table = document.querySelector('.table-example');
2
table.style.display = 'none';
3