Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Quinneisha Brooks
3,324 PointsI am following along with the video in workspace, but when I save, refresh the browser, and try to click, nothing happen
Nothing happens when I click on the bullet points

Katharine Cooney
4,612 PointsHi Quinneisha!
Does your code look like this? (let's see if I can get this to format properly in the comments!)
$('li').on('click', function() {
$(this).text("Clicked!").delay(800).fadeOut(400);
});
If so, did you check your HTML to make sure that the script for the CDN is included just before your script for app.js?
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>
Ella Ruokokoski
20,881 PointsElla Ruokokoski
20,881 PointsCan you post your code