---
id: bad87fee1348bd9aec908852
title: Create a Class to Target with jQuery Selectors
challengeType: 0
forumTopicId: 16815
localeTitle: Создание класса для цели с помощью селекторов jQuery
---
## Description
Не каждый класс должен иметь соответствующий CSS. Иногда мы создаем классы только с целью более простого выбора этих элементов с помощью jQuery. Создайте класс для каждого из ваших элементов button
target
.
## Instructions
## Tests
```yml
tests:
- text: Apply the target
class to each of your button
elements.
testString: assert($(".target").length > 5);
```
## Challenge Seed
## Solution