-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
25 lines (19 loc) · 1.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<script src="./index.js"></script>
<!--
There are 6 scripts on this page that are exactly the same. The only difference is the `async` and `defer` attributes that some of them have as well as the position on the page they are listed.
In order to see a noticeable difference in page load performance, use Chome Dev Tools to throttle your internet connection then uncomment one script at a time. Notice the change in the event timeline.
This exercise will help you learn the difference of each of these DOM events and understand the importance of proper JS script management.
-->
<!-- <script src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
<!-- <script async src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
<!-- <script defer src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
</head>
<body>
<div></div>
<!-- <script src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
<!-- <script async src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
<!-- <script defer src="http://code.jquery.com/jquery-3.2.1.js"> </script> -->
</body>
</html>