--- id: bad87fee1348bd9aed808826 title: Disable an Element Using jQuery challengeType: 6 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: قم بتعطيل زر target1 الخاص بك. testString: 'assert($("#target1") && $("#target1").prop("disabled") && code.match(/[""]disabled[""],( true|true)/g), "Disable your target1 button.");' - text: لا تقم بتعطيل أي أزرار أخرى. testString: 'assert($("#target2") && !$("#target2").prop("disabled"), "Do not disable any other buttons.");' - text: استخدم jQuery فقط لإضافة هذه الفئات إلى العنصر. testString: 'assert(!code.match(/disabled[^<]*>/g), "Only use jQuery to add these classes to the element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

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