---
id: 5efc54138d6a74d05e68af76
title: Part 54
challengeType: 0
---
## Description
Add an `id` attribute with the value `loving` to the checkbox input.
## Tests
```yml
tests:
- text: 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.
testString: assert( $('input[type="checkbox"]')[0].hasAttribute('id') );
- text: 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.
testString: assert( $('input[type="checkbox"]')[0].id.match(/^loving$/) );
```
## Challenge Seed