Question

All concerns of combination, minification, gzipping, and cache aside. Does marking a script as async still preserve script execution order?

Say I have a page where jquery is included at the top followed by other scripts at the bottom that assume the presence of jquery.

If I mark the jquery script with the async attribute I know the browser will continue parsing my html. However, will the browser guarantee that jquery is loaded before my other scripts execute or might things happen out of order resulting in an undefined $?

Était-ce utile?

La solution

Making a script async does not guarantee any synchronous execution, except that of the script itself.

<script async src="jquery.js"></script>
<script>
    $.noop() // will definitely throw an error
</script>

<script async src="jquery.js"></script>
<script src="someOtherNonAsyncScript.js"></script>
<script>
    $.noop() // may or may not throw an error
</script>

Autres conseils

No. It will execute asynchronously.

The async and defer attributes are boolean attributes that indicate how the script should be executed. (...)

http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#attr-script-async

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top