The div tags are a part of your DOM, therefore you can remove them with Javascript. If you wish to hide “.loading”, you can do it after the page has loaded by adding this event to your Javascript:
window.onload = function () {
$(".loading").hide(); }
Comment if that’s not what you are looking for.
solved how to end loading screen? c#, javascript