--- id: 5efc518e8d6a74d05e68af75 title: Part 56 challengeType: 0 --- ## 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.
## Tests
```yml tests: - text: You should make sure the checkbox is still present. testString: assert( $('input[type="checkbox"]')[0] ); - text: The checkbox `input` element does not have a `name` attribute. Check that there is a space after the opening tag's name. testString: assert( $('input[type="checkbox"]')[0].hasAttribute('name') ); - text: 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. testString: assert( $('input[type="checkbox"]')[0].getAttribute('name').match(/^personality$/) ); ```
## Challenge Seed
```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

  • cat nip
  • laser pointers
  • lasagna
A slice of lasagna on a plate.
Cats love lasagna.

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Five cats looking around a field.
Cats hate other cats.

Cat Form

Is your cat an indoor or outdoor cat?
What's your cat's personality? --fcc-editable-region-- --fcc-editable-region--
```