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 trialDaniel Whiteman
Full Stack JavaScript Techdegree Student 19,248 PointsI don't understand why there are two blanks in this question?
Doesn't the code I've written in the first blank complete the question? I.e: $('.my-element').slideUp(2000);
Confused...
2 Answers
Steven Parker
231,236 PointsSo the question is "Fill in the blank to create an animation that slides an element up after 2 seconds."
Note that the slide should start after 2 seconds, not take 2 seconds. The two blanks are because you're expected to accomplish this by chaining 2 functions.
Daniel Whiteman
Full Stack JavaScript Techdegree Student 19,248 PointsHello. Yes, that would be the .delay(2000). Clearly I needed a 5 minute mental break. Thank you for the help!