I have a div that is usually hidden:
<div id="errorDiv" x-ng-show="errorOccured">
{{errorStatus}}: {{errorMessage}}
</div>
when I load the page, I see it for a short second, which I don't want. So I tried hiding it at start:
<div id="errorDiv" x-ng-show="errorOccured" class="ng-hide">
{{errorStatus}}: {{errorMessage}}
</div>
but that didn't work :-( Is there any good way to hide a div at the time of page loading?