0

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 $?

2 Answers 2

1

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>
Sign up to request clarification or add additional context in comments.

Comments

0

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

Comments

Your Answer

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

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.