--- id: bad87fee1348bd9aec908854 title: Label Bootstrap Wells challengeType: 0 --- ## Description
For the sake of clarity, let's label both of our wells with their ids. Above your left-well, inside its col-xs-6 div element, add a h4 element with the text #left-well. Above your right-well, inside its col-xs-6 div element, add a h4 element with the text #right-well.
## Instructions
## Tests
```yml tests: - text: Add an h4 element to each of your <div class="col-xs-6"> elements. testString: assert($(".col-xs-6").children("h4") && $(".col-xs-6").children("h4").length > 1, 'Add an h4 element to each of your <div class="col-xs-6"> elements.'); - text: One h4 element should have the text #left-well. testString: assert(new RegExp("#left-well","gi").test($("h4").text()), 'One h4 element should have the text #left-well.'); - text: One h4 element should have the text #right-well. testString: assert(new RegExp("#right-well","gi").test($("h4").text()), 'One h4 element should have the text #right-well.'); - text: Make sure all your h4 elements have closing tags. testString: assert(code.match(/<\/h4>/g) && code.match(/

/g).length === code.match(/

h4 elements have closing tags.'); ```

## Challenge Seed
```html

jQuery Playground

```
## Solution
```html

jQuery Playground

#left-well

#right-well

```