I downloaded jQuery and tried to run it in sublime text editor, but it doesn't seem to be working. There are no errors in my console, so I also tried using jQuery's web address in my script tag, but that doesn't work either. Lastly, I've copied and pasted by code into a plunk and it still doesn't work in there either. Can someone take a look at this and tell me what's up? http://plnkr.co/edit/LSz4Sj35oOvHJYZ61cMr
<!DOCTYPE html>
<html>
<head>
<script data-require="jquery@2.1.4" data-semver="2.1.4" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div id="circle"></div>
<br />
<p>Hello</p>
</body>
</html>
**CSS**
#circle {
height: 200px;
width: 200px;
border-radius: 100px;
background-color: red;
}
.square {
height: 200px;
width: 200px;
margin-top: 10px;
background-color: blue;
}
**JS**
$('#circle').click(function() {
$('p').html("the text has changed");
});