--- 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 forumTopicId: 18264 --- ## 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: The btn-default class should be removed from all of your button elements. testString: assert($(".btn-default").length === 0); - text: You should only use jQuery to remove this class from the element. testString: assert(code.match(/btn btn-default/g)); - text: You should only remove the btn-default class. testString: assert(code.match(/\.[\v\s]*removeClass[\s\v]*\([\s\v]*('|")\s*btn-default\s*('|")[\s\v]*\)/gm)); ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

```
## Solution
```html

jQuery Playground

#left-well

#right-well

```