Challenge Use JQuery To Modify The Entire Page - thelastmile/FreeCodeCamp GitHub Wiki

Challenge Use jQuery to Modify the Entire Page

jQuery can target the body element as well.

Here's how we would make the entire body fade out:

$('body').addClass('animated fadeOut');