--- id: bad87fee1348bd9aec908857 title: Use Comments to Clarify Code challengeType: 0 --- ## Description
When we start using jQuery, we will modify HTML elements without needing to actually change them in HTML. Let's make sure that everyone knows they shouldn't actually modify any of this code directly. Remember that you can start a comment with <!-- and end a comment with --> Add a comment at the top of your HTML that says Only change code above this line.
## Instructions
## Tests
```yml tests: - text: Start a comment with <!-- at the top of your HTML. testString: assert(code.match(/^\s*.*this line))\s*.*this line.*\s*-->/gi), 'Your comment should have the text Only change code above this line.'); - text: Be sure to close your comment with -->. testString: assert(code.match(/-->.*\n+.+/g), 'Be sure to close your comment with -->.'); - text: You should have the same number of comment openers and closers. testString: assert(code.match(//g).length, 'You should have the same number of comment openers and closers.'); ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

```
## Solution
```js // solution required ```