You can use the following jquery cdn to replace the jquery version in the code:
Jquery Online Editor that allows your Jquery code online without the need of a web server, You don't need to use a text editor to edit Jquery files on your computer.
This way you can quickly and easily see the Jquery running results, With ace editor, any errors or warnings are identified and clear and actionable feedback is provided to help you improve the performance of your code. 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://cdnjs.cloudflare.com/ajax/libs/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>