--- id: bad87fee1348bd9aed918626 title: Remove Classes from an Element with jQuery required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 --- ## Description
In the same way you can add classes to an element with jQuery's addClass() function, you can remove them with jQuery's removeClass() function. Here's how you would do this for a specific button: $("#target2").removeClass("btn-default"); Let's remove the btn-default class from all of our button elements.
## Instructions
## Tests
```yml tests: - text: Remove the btn-default class from all of your button elements. testString: assert($(".btn-default").length === 0, 'Remove the btn-default class from all of your button elements.'); - text: Only use jQuery to remove this class from the element. testString: assert(code.match(/btn btn-default/g), 'Only use jQuery to remove this class from the element.'); - text: Only remove the btn-default class. testString: assert(code.match(/\.[\v\s]*removeClass[\s\v]*\([\s\v]*('|")\s*btn-default\s*('|")[\s\v]*\)/gm), 'Only remove the btn-default class.'); ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

```
## Solution
```html

jQuery Playground

#left-well

#right-well

```