--- id: bad87fee1348bd9aed908826 title: Change the CSS of an Element Using jQuery required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 --- ## Description
We can also change the CSS of an HTML element directly with jQuery. jQuery has a function called .css() that allows you to change the CSS of an element. Here's how we would change its color to blue: $("#target1").css("color", "blue"); This is slightly different from a normal CSS declaration, because the CSS property and its value are in quotes, and separated with a comma instead of a colon. Delete your jQuery selectors, leaving an empty document ready function. Select target1 and change its color to red.
## Instructions
## Tests
```yml tests: - text: Your target1 element should have red text. testString: assert($("#target1").css("color") === 'rgb(255, 0, 0)', 'Your target1 element should have red text.'); - text: Only use jQuery to add these classes to the element. testString: assert(!code.match(/class.*animated/g), 'Only use jQuery to add these classes to the element.'); ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

```
## Solution
```js // solution required ```