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 Build an Interactive Website jQuery Plugins Responsive Slider Plugin - HTML

Bug in challenge 2 of 3 Responsive slider plugin

Bug in : Project build an interactive website, jQuery plugins, responsive slider plugin, Challenge 2 of 3 - Within the “wmuSlider” div add another div with the class "wmuSliderWrapper".

I can't get past this as there is no wmuSlider div to add another div to. When I add a div called wmuSlider and add another div with the class of wmuSliderWrapper, it still errors on that challenge.

2 Answers

What I tried was this :

<div id="container" class="wmuSlider"> <div id="wmuSlider"> <div id="anotherdiv" class="wmuSliderWrapper"> </div> </div> </div>

The question is a bit misleading; Within the “wmuSlider” div add another div with the class "wmuSliderWrapper". There is no wmuSlider div.

Your solution worked, thanx alot for you help Jacob.

Jacob Miller
Jacob Miller
12,466 Points

You're supposed to add another div inside of the div with the class of wmuSlider, the one in the first challenge. I just tried it and there was no bug on my end. Your code should look like this:

<div id="container" class="wmuSlider">
    <div class="wmuSliderWrapper">
    </div>
</div>