--- id: bad87fee1348bd9aed808826 title: Disable an Element Using jQuery challengeType: 6 videoUrl: '' localeTitle: Отключить элемент с помощью jQuery --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: '' 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: '' 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 ```