After downloading jQuery, we can include it in our HTML page with a <script> tag:
<html>
<head>
<title>My Page</title>
<script src="jquery-1.11.2.min.js"></script>
</head>
<body>
Hi, here is some text.
</body>
</html>
Now that jQuery is included, we can write JavaScript that uses it.
Leave a comment