Method 1
One method you could try is to set the element's CSS to display:none;. This will hide the element, and calling the next function will make the element appear when the DOM loads.
$(document).ready(function () {
$("element").show();
});
, jQuery, display:none; ,
<
2
, , - visibility:hidden. , , . , , . , .css(), .show() CSS display:block; , :
$(document).ready(function () {
$("element").css("visibility", "visible")
});
CSS , , DOM .