--- id: bad87fee1348bd9aec908857 title: Use Comments to Clarify Code challengeType: 0 videoUrl: '' localeTitle: Utilizar comentarios para clarificar el código --- ## Description
Cuando comencemos a usar jQuery, modificaremos los elementos HTML sin necesidad de cambiarlos realmente en HTML. Asegurémonos de que todos sepan que no deberían modificar directamente ninguno de estos códigos. Recuerda que se puede comenzar un comentario con <!-- y terminar el mismo con --> Agrega un comentario en la parte superior de su código HTML que diga Only change code above this line.
## Instructions
## Tests
```yml tests: - text: Comienza un comentario con <!-- en la parte superior de tu 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: Asegúrese de cerrar su comentario con --> . testString: 'assert(code.match(/-->.*\n+.+/g), "Be sure to close your comment with -->.");' - text: Debes tener el mismo número de abridores y cerradores de comentarios. 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 ```