--- id: bad87fee1348bd9aec908849 title: Add Elements within Your Bootstrap Wells challengeType: 0 --- ## Description
Now we're several div elements deep on each column of our row. This is as deep as we'll need to go. Now we can add our button elements. Nest three button elements within each of your well div elements.
## Instructions
## Tests
```yml tests: - text: Nest three button elements within each of your div elements with class well. testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, 'Nest three button elements within each of your div elements with class well.'); - text: You should have a total of 6 button elements. testString: assert($("button") && $("button").length > 5, 'You should have a total of 6 button elements.'); - text: Make sure all your button elements have closing tags. testString: assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

jQuery Playground

```
## Solution
```js // solution required ```