--- id: 5efc54138d6a74d05e68af76 title: Paso 54 challengeType: 0 dashedName: step-54 --- # --description-- Añade un atributo `id` con el valor `loving` al elemento input de tipo checkbox. # --hints-- Tu checkbox debe tener un atributo `id`. Comprueba que hay un espacio después del nombre de la etiqueta de apertura y/o que hay espacios antes de todos los nombres de los atributos. ```js assert($('input[type="checkbox"]')[0].hasAttribute('id')); ``` Tu checkbox debe tener un atributo `id` con el valor `loving`. Probablemente no has añadido el valor o tienes un error tipográfico. Recuerda que los valores de los atributos deben estar entre comillas. ```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--
```