Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMatthew Hauth
689 PointsError in Workspace Code
App.js is shown as
$('li').on('click', function() { $(this.text("Clicked!"); });
when it should be
$('li').on('click', function() { $(this).text("Clicked!"); });
Michael Stedman
Full Stack JavaScript Techdegree Student 13,838 PointsThank you Matthew Hauth I could not for the life of me figure out why it was not working. And Lee Zamastil is right....Already a handful of mistakes this early on... Doesn't seem like this is going to be too fun.
1 Answer
Blake Baxendell
16,344 PointsI also noticed that my jQuery inserted into index.html didn't carry over from last workspace either.
Lee Zamastil
21,628 PointsLee Zamastil
21,628 PointsThank you, Matthew. This is the second issue in the first three videos.