Suppose I have:
<script src="script1.js"></script>
<script src="script2.js"></script>
Both of these scripts have ready() inside. Will the code in script2.js's ready() always execute after the first one?
Suppose I have:
<script src="script1.js"></script>
<script src="script2.js"></script>
Both of these scripts have ready() inside. Will the code in script2.js's ready() always execute after the first one?