You can replace the jQuery version in the code with the following jQuery CDN links:
The Jquery Online Editor tool allows you to run your Jquery code online without requiring a web server. You don't need to use a text editor on your computer to edit Jquery files.
This way, you can quickly and easily see the results of your Jquery code in action. Using the Ace editor, you can detect code errors or warnings and receive clear, interactive feedback to help improve your code performance. You can write or paste Jquery code like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HelloWorld</title>
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.0/jquery.min.js"></script>
</head>
<body>
<button>Click me</button>
<script>
$(document).ready(function () {
$("button").click(function () {
alert("Hello World")
});
});
</script>
</body>
</html>