Hacker News new | ask | show | jobs
by chrismorgan 1875 days ago
Inline <script type="module"> is executed after DOMContentLoaded.

Inline <script> is executed during parsing.

https://html.spec.whatwg.org/multipage/scripting.html#the-sc... gives the full details of the interactions between type, src, defer and async. Inline scripts are normally referred to as script elements where the src attribute is not present.

1 comments

Wow, thanks for that detail. That's some obscura to me.