--- id: bad87fee1348bd9aed208826 title: Target the Children of an Element Using jQuery challengeType: 6 videoUrl: '' localeTitle: Цель детей элемента с помощью jQuery --- ## Description undefined ## Instructions
Дайте всем детям вашего right-well элемента колорит оранжевый цвет.
## Tests
```yml tests: - text: '' testString: 'assert($("#right-well").children().css("color") === "rgb(255, 165, 0)", "All children of #right-well should have orange text.");' - text: Вы должны использовать функцию children() для изменения этих элементов. testString: 'assert(code.match(/\.children\(\)\.css/g), "You should use the children() function to modify these elements.");' - text: '' testString: 'assert(code.match(/
/g), "Only use jQuery to add these classes to the element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

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