javascript - Hide a table using jQuery -
i keep table hidden @ time of loading. later slidedown table show when link clicked.i write code hide table.
$('.table_div').hide();
i placed table in div. hide div.
my problem @ time of loading first table display moment table hide. prevent display. thanks
to prevent add css property .table_div
.table_div { display: none; }
Comments
Post a Comment