How can I hide an HTML table row so that it takes up no space? I have several \'s set to style=\"display:none;\"
-
2020-12-25 09:52
You can set and then show it back with JavaScript:
var result_style = document.getElementById('result_tr').style;
result_style.display = 'table-row';