Why doesn’t this work? :
<table id="table1">
<tr id="trSS">
detail1
</tr>
<tr id="trEstate">
detail2
</tr>
</table>
With :
$(document).ready(function() {
$("#trSS").hide();
});
Not working, as in detail1 and detail2 are always displayed, where detail1 should be hidden by the code.
Add the table cell elements:
See here