Skip to content

modernize javascript #447

@frankystone

Description

@frankystone

This is just a reminder…

  • javascript is sometimes included in the <body> tag, move all to <head>
  • use async or defer to 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:

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions