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 trial

JavaScript

Including jQuery in our Project - Task 3 of 5

link to the challenge task 3 http://teamtreehouse.com/library/websites/build-an-interactive-website/introduction-to-jquery/including-jquery-in-our-project-2 I have got this far <script type="text/javascript"> $("#message .removable").hide().show("slow")</script> I have already searched the forums and found this https://teamtreehouse.com/forum/including-jquery-in-our-project-task-3-of-5 but I dont understand. Also how do I post code in these forums and make it show like code is supposed to? Iv tried indenting the code with 4 spaces?

2 Answers

Leave the #message one but remove the .removable bit and remembering the semicolon at the end. Then start a new line: $(".removable")

Hey thanks for the reply that worked for me now :)