--- id: bad87fee1348bd9aecb08826 title: Use jQuery to Modify the Entire Page challengeType: 6 forumTopicId: 18361 required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' dashedName: use-jquery-to-modify-the-entire-page --- # --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. # --hints-- You should add the classes `animated` and `hinge` to your `body` element. ```js assert($('body').hasClass('animated') && $('body').hasClass('hinge')); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

#left-well

#right-well

``` # --solutions-- ```html

jQuery Playground

#left-well

#right-well

```