Cat Photos
Click here to view more cat photos.

Cat Lists
Things cats love:
- cat nip
- laser pointers
- lasagna

Top 3 things cats hate:
- flea treatment
- thunder
- other cats

--- id: 5efc518e8d6a74d05e68af75 title: Step 56 challengeType: 0 dashedName: step-56 --- # --description-- Add the `name` attribute with the value `personality` to the checkbox `input` element. While you won't notice this in the browser, doing this makes it easier for a server to process your web form, especially when there are multiple checkboxes. # --hints-- You should make sure the checkbox is still present. ```js assert($('input[type="checkbox"]')[0]); ``` The checkbox `input` element does not have a `name` attribute. Check that there is a space after the opening tag's name. ```js assert($('input[type="checkbox"]')[0].hasAttribute('name')); ``` The checkbox `input` element should have a `name` attribute with the value `personality`. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks. ```js assert( $('input[type="checkbox"]')[0] .getAttribute('name') .match(/^personality$/) ); ``` # --seed-- ## --seed-contents-- ```html
Click here to view more cat photos.