freeCodeCamp/guide/english/certifications/front-end-libraries/jquery/use-jquery-to-modify-the-en.../index.md

355 B

title
Use jQuery to Modify the Entire Page

Use jQuery to Modify the Entire Page

Problem Explanation

Add the classes animated and hinge to your body element.

Solution:

<script>
  $("body").addClass("animated hinge");
  });
</script>