--- id: bad87fee1348bd9aed008826 title: Target Even Elements Using jQuery required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 videoUrl: '' localeTitle: الهدف حتى العناصر باستخدام jQuery --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: جميع العناصر target التي يعتقد jQuery أنها يجب أن تهتز. testString: 'assert($(".target:even").hasClass("animated") && $(".target:even").hasClass("shake"), "All of the target elements that jQuery considers to be even should shake.");' - text: 'يجب عليك استخدام :even selector لتعديل هذه العناصر.' testString: 'assert(code.match(/\:even/g), "You should use the :even selector to modify these elements.");' - text: استخدم jQuery فقط لإضافة هذه الفئات إلى العنصر. testString: 'assert(code.match(/\$\(".target:even"\)/g) || code.match(/\$\(".target:even"\)/g) || code.match(/\$\(".target"\).filter\(":even"\)/g) || code.match(/\$\(".target"\).filter\(":even"\)/g), "Only use jQuery to add these classes to the element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

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