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 trialsarah shelden
8,332 Pointsconfused
what am i missing?
i translated document.querySelector('.profile-header').style.display = 'none';
into jquery and added the .hide();
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h1 class="profile-header">Student <span>Profile</span></h1>
<script
src="jquery-3.2.1.min.js"></script>
<script src="app.js"></script>
</body>
</html>
$('profile-header')
.style.display = "none"
.hide();
2 Answers
Stuart Wright
41,120 PointsThere are two edits needed here to make your code pass the challenge:
- You need the string '.profile-header' in your selector rather than 'profile-header'. The . is to indicate that it is a class name.
- You can get rid of the .style.display="none" part - the .hide() function is all that you need to achieve the same result.
sarah shelden
8,332 PointsThank you Stuart!
It worked. correct answer is :
$('.profile-header').hide();