--- 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
这些动画起初很酷,但现在它们让人分心。从document ready function删除所有这三个jQuery函数,但保留document ready function本身。
## Instructions
## Tests
```yml tests: - text: 从document ready function删除所有三个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 ```