18

For example requireJS uses following syntax:

<script data-main="scripts/main" src="scripts/require.js"></script>

and in its documentation you can read:

data-main attribute tells require.js to load scripts/main.js after require.js loads

  1. How is that (script load-order) possible?
  2. If the name of the js-file was nomain.js, would the data-attribute be "data-nomain" ?
  3. I see no information about that in the html5 specification or am I looking at wrong place?

thank you

1
  • This is why "foo" and "bar" were invented, to distinguish user names from system names. Commented Nov 2, 2017 at 6:57

1 Answer 1

24

How is that (script load-order) possible?

Because that is the purpose of require.js which consists of rather a lot of code to do that.

That specific part is rather trivial, require.js can't do anything (including load another script) until it is loaded itself.

If the name of the js-file was nomain.js, would the data-attribute be "data-nomain" ?

No. Require looks at data-main to determine the entry point script file. It gets the URL from the value of that attribute.

I see no information about that in the html5 specification or am I looking at wrong place?

data-* attributes are defined in the section 3.2.5.9 Embedding custom non-visible data with the data-* attributes

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.