--- id: bad87fee1348bd9aec908853 title: Add id Attributes to Bootstrap Elements challengeType: 0 videoUrl: '' localeTitle: إضافة سمات المعرف إلى عناصر Bootstrap --- ## Description
تذكر أنه بالإضافة إلى سمات الصف ، يمكنك إعطاء كل عنصر من id خاصية id . يجب أن يكون كل معرف فريدًا لعنصر محدد ويستخدم مرة واحدة فقط لكل صفحة. دعونا نمنح معرفًا فريدًا لكل عنصر من عناصر div للفئة well . تذكر أنه يمكنك إعطاء عنصر معرف مثل هذا: <div class="well" id="center-well"> أعط البئر على اليسار معرف left-well . اعط البئر على اليمين معرف right-well .
## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($(".col-xs-6").children("#left-well") && $(".col-xs-6").children("#left-well").length > 0, "Give your left well the id of left-well.");' - text: امنح حقك well معرف right-well . testString: 'assert($(".col-xs-6").children("#right-well") && $(".col-xs-6").children("#right-well").length > 0, "Give your right well the id of right-well.");' ```
## Challenge Seed
```html

jQuery Playground

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