$(document).ready(function() {
$('.tblMinimum').show();
$('.tblMaximum).hide();
});
When the page loads I still see .tblMaximum for a split second before it is hidden. How can I get it to hide completely?
| SitePoint Sponsor |
$(document).ready(function() {
$('.tblMinimum').show();
$('.tblMaximum).hide();
});
When the page loads I still see .tblMaximum for a split second before it is hidden. How can I get it to hide completely?
-=SunnaH=-


Set it in your CSS to hide it
Code CSS:.tblMinimum { display: none; }


Yes. Your click event that calls .show() will allow the element to be shown.
Bookmarks