Change table row display property
- by Idsa
I have an html page with a table that contains a hidden row:
<table>
<tr id="hiddenTr" style="display:none">
</tr>
</table>
I need to make it visible at client side using jquery. I tried this
$('#hiddenTr').show();
and this
$('#hiddenTr').css('display', 'table-row');
Both implementations don't work for me. Furthemore the second one is not crossbrowser.