--- id: bad87fee1348bd9aecb08826 title: Use jQuery to Modify the Entire Page required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 videoUrl: '' localeTitle: Usa jQuery para modificar la página completa --- ## Description
Hemos terminado de jugar con nuestro patio de juegos jQuery. ¡Vamos a derribarlo! jQuery también puede apuntar al elemento del body . Así es como haríamos que todo el cuerpo se desvanezca: $("body").addClass("animated fadeOut"); Pero hagamos algo más dramático. Agrega las clases animated y hinge a tu body .
## Instructions
## Tests
```yml tests: - text: Agrega las clases animated y hinge a tu body . testString: 'assert($("body").hasClass("animated") && $("body").hasClass("hinge"), "Add the classes animated and hinge to your body element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

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