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.

Fernando Jimenez
Courses Plus Student 7,906 PointsNot sure what i am doing wrong here. Is event.target == ‘.student-list’? I get a little confused with event.target still
Not sure what i am doing wrong here. Is event.target == ‘.student-list’? I get a little confused with event.target still
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h2>Student List</h2>
<ul class="student-list">
<li>James McAvoy</li>
<li>Alena Holligan</li>
<li>Wade Christensen</li>
<li>Matt Krzyzynski</li>
</ul>
<script
src="jquery-3.2.1.min.js"></script>
<script src="app.js"></script>
</body>
</html>
$('.student-list').on('click', function(event){
hide(event.target); });
4 Answers

Jackson Monk
4,527 PointsYour click event is technically triggered whenever you click on the ul, but I think it will also trigger if you click on its children

Adam Beer
11,314 PointsYou are near. Inside of your click handler, use jQuery ($ <- jQuery selector) to 'select' event.target, then call the hide() method on your selection. Hope this help.

Mike Hatch
14,940 PointsYou have it pretty close, but some things are out of order. First line is correct, so now we move to the second line.
hide()
is the method the Challenge is asking you to "call". When attaching a method, there will also be a dot operator. Since methods are functions that means you also need to call it. How do we call a function--we add parentheses. Like this: hide()
The other error you made was omitting the jQuery selector before (event.target)
. For a deeper understanding of event.target
I would recommend the MDN docs.

Thomas Tilton-Heylin
12,098 Points$('.student-list:hidden').on('click', function(){
this.show();
});