--- id: bad87fee1348bd9bedc08826 title: Target HTML Elements with Selectors Using jQuery challengeType: 6 forumTopicId: 18319 required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' dashedName: target-html-elements-with-selectors-using-jquery --- # --description-- Now we have a `document ready` function. Now let's write our first jQuery statement. All jQuery functions start with a `$`, usually referred to as a dollar sign operator, or as bling. jQuery often selects an HTML element with a selector, then does something to that element. For example, let's make all of your `button` elements bounce. Just add this code inside your document ready function: ```js $("button").addClass("animated bounce"); ``` Note that we've already included both the jQuery library and the Animate.css library in the background so that you can use them in the editor. So you are using jQuery to apply the Animate.css `bounce` class to your `button` elements. # --hints-- You should use the jQuery `addClass()` function to give the classes `animated` and `bounce` to your `button` elements. ```js assert($('button').hasClass('animated') && $('button').hasClass('bounce')); ``` You should only use jQuery to add these classes to the element. ```js assert(!code.match(/class.*animated/g)); ``` Your jQuery code should be within the `$(document).ready();` function. ```js assert( code.replace(/\s/g, '').match(/\$\(document\)\.ready\(function\(\)\{\$/g) ); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

#left-well

#right-well

``` # --solutions-- ```html

jQuery Playground

#left-well

#right-well

```