--- 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 --- ## Description
We're done playing with our jQuery playground. Let's tear it down! jQuery can target the body element as well. Here's how we would make the entire body fade out: $("body").addClass("animated fadeOut"); But let's do something more dramatic. Add the classes animated and hinge to your body element.
## Instructions
## Tests
```yml tests: - text: Add the classes animated and hinge to your body element. 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
```html

jQuery Playground

#left-well

#right-well

```