Answers for "when data is being loaded on the div, the loader is visible. after the data is loaded, the loader disappears and then the data is visible."

0

display div while load

<script>
  $(window).load(function() {
    $('#loading').hide();
  });
</script>
Posted by: Guest on June-11-2020

Code answers related to "when data is being loaded on the div, the loader is visible. after the data is loaded, the loader disappears and then the data is visible."

Browse Popular Code Answers by Language