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 trialLeonard Morrison
Courses Plus Student 32,914 PointsI'm having trouble with the jQuery....
The jQuery is not working for some reason.... It's not hiding the system or anything
//Hide spoilers
$(".spoilers span").hide();
//Add a button
$(".spoiler").append("<button>Click here to reveal spoilers</button>");
//Reveal spoilers
//Hide the button
<!DOCTYPE html>
<html>
<head>
<title>Star Wars Spoilers</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<img src="img/deathstar.png" />
<p class="spoiler">
<!--Spoiler:-->
<span>Darth Vader is Luke Skywalker's Father! Noooooooooooo!</span>
</p>
<script src="https://code.jquery.com/jquery-3.0.0.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>
2 Answers
Eliot Ostling
9,599 PointsYou are so close!
$(".spoiler").append("<button> Reveal Spoiler!</button>");
Everything here is case sensitive!
Joshua Kotchoubay
1,082 Points$(".spoilers span").hide();
The paragraph class is "spoiler" so your code should be
$(".spoiler span").hide();