Browse Source

Added jquery.

Jake Peek 4 years ago
parent
commit
9f3c54605f
3 changed files with 7 additions and 1 deletions
  1. 2 1
      public/index.html
  2. 3 0
      public/js/index.js
  3. 2 0
      public/js/jquery.min.js

+ 2 - 1
public/index.html

@@ -7,7 +7,7 @@
7
 	<title>Jetfruit</title>
7
 	<title>Jetfruit</title>
8
 	<link rel="stylesheet" href="/css/bootstrap.css">
8
 	<link rel="stylesheet" href="/css/bootstrap.css">
9
 	<link rel="stylesheet" href="/css/style.css">
9
 	<link rel="stylesheet" href="/css/style.css">
10
-	<script src="/js/index.js"></script>
10
+	<script src="/js/jquery.min.js"></script>
11
 </head>
11
 </head>
12
 
12
 
13
 <body>
13
 <body>
@@ -24,6 +24,7 @@
24
 			</div>
24
 			</div>
25
 		</div>
25
 		</div>
26
 	</div>
26
 	</div>
27
+	<script src="/js/index.js"></script>
27
 </body>
28
 </body>
28
 
29
 
29
 </html>
30
 </html>

+ 3 - 0
public/js/index.js

@@ -0,0 +1,3 @@
1
+$(document).ready(function () {
2
+	console.log("Hello, I am some JavaScript.");
3
+});

File diff suppressed because it is too large
+ 2 - 0
public/js/jquery.min.js