--- id: 5efc54138d6a74d05e68af76 title: Part 54 challengeType: 0 dashedName: part-54 --- # --description-- Add an `id` attribute with the value `loving` to the checkbox input. # --hints-- Your checkbox should have an `id` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. ```js assert($('input[type="checkbox"]')[0].hasAttribute('id')); ``` Your checkbox should have an `id` attribute with the value `loving`. 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].id.match(/^loving$/)); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

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-- Loving --fcc-editable-region--
```