Files

21 lines
355 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
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:
- [.addClass()](https://api.jquery.com/addClass/e)
### Solution:
```javascript
<script>
$("body").addClass("animated hinge");
});
</script>
```