355 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			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.
Relevant Links:
Solution:
<script>
  $("body").addClass("animated hinge");
  });
</script>