JS loading
async / defer should be standard
Do not load js in the footer
async
<script src="js/script.js" async></script>
defer
<script src="js/script.js" defer></script>
Last updated
Was this helpful?
Do not load js in the footer
<script src="js/script.js" async></script>
<script src="js/script.js" defer></script>
Last updated
Was this helpful?