--- id: bad87fee1348bd9aec908857 title: Use Comments to Clarify Code challengeType: 0 forumTopicId: 18347 --- # --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 `` Add a comment at the top of your HTML that says `Code below this line should not be changed` # --hints-- You should start a comment with `.*this line))\s*.*this line.*\s*-->/gi)); ``` You should close your comment with `-->`. ```js assert(code.match(/-->.*\n+.+/g)); ``` You should have the same number of comment openers and closers. ```js assert(code.match(//g).length); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

#left-well

#right-well

``` # --solutions-- ```html

jQuery Playground

#left-well

#right-well

```