From 19835af7b1dc208e4a7f5e9a7630325372a74bed Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 17 Apr 2019 16:59:48 +0900 Subject: update jQuery version in example I know it's only an example, but best to have the most recent version here which doesn't have a known security vulneability. --- htmlcssguide.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htmlcssguide.html b/htmlcssguide.html index 5ac4b93..5fd082e 100644 --- a/htmlcssguide.html +++ b/htmlcssguide.html @@ -32,14 +32,14 @@ files, style sheets, and scripts, unless the respective files are not available over HTTPS.

<!-- Not recommended: omits the protocol -->
-<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
+<script src="//ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
 
 <!-- Not recommended: uses HTTP -->
-<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
 
<!-- Recommended -->
-<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
 
/* Not recommended: omits the protocol */
-- 
cgit v1.2.3