-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
This is just a reminder…
- javascript is sometimes included in the
<body>tag, move all to<head> - use
asyncordeferto make the site load faster - the option
type="text/javascript"isn't needed in html5
Example:
- now:
<script type="text/javascript" src="{% static 'js/jquery-3.2.1.js' %}"></script> - future:
<script src="{% static 'js/jquery-3.2.1.js' %}" async></script>
References: