Hi,
Is there a way to render my JS file at the bottom instead of in the head? This may not be loaded first.
I use the 'Custom header include' with file HeaderInclude.cshtml and that contains all my links to my files such as <script src="/Files/Templates/Designs/Swift/Assets/js/custom.js" crossorigin="anonymous" defer></script>. These are then of course loaded into the head, but how can I load scripts at the bottom?
For example, I make a BottomScript.cshtml (like HeaderInclude.cshtml, but than for the bottom) with a link to my own file bottom.js. Can I link it somewhere so that it appears at the bottom? If this is not possible, how do I solve this in another way?
Caro