Files
2018-10-16 21:32:40 +05:30

355 B

title
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>