--- id: bad87fee1348bd9aeda08726 title: Delete Your jQuery Functions required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 videoUrl: '' localeTitle: Удалить функции jQuery --- ## Description
Сначала эти анимации были классными, но теперь они становятся отвлекающими. Удалите все три из этих функций jQuery из функции document ready function , но не оставляйте свою document ready function неповрежденной.
## Instructions
## Tests
```yml tests: - text: Удалите все три функции jQuery из document ready function . testString: 'assert(code.match(/\{\s*\}\);/g), "Delete all three of your jQuery functions from your document ready function.");' - text: Оставьте свой элемент script неповрежденным. testString: 'assert(code.match(/

jQuery Playground

#left-well

#right-well

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