--- id: bad87fee1348bd9aec908857 title: Use Comments to Clarify Code challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description
عندما نبدأ باستخدام jQuery ، سنقوم بتعديل عناصر HTML دون الحاجة إلى تغييرها فعليًا في HTML. دعونا نتأكد من أن الجميع يعرف أنه لا يجب عليهم تعديل أي من هذه الشفرات بشكل مباشر. تذكر أنه يمكنك بدء تعليق باستخدام <!-- وإنهاء تعليق باستخدام --> إضافة تعليق أعلى HTML الخاص بك يقول Only change code above this line.
## Instructions undefined ## Tests
```yml tests: - text: بدء تعليق مع <!-- في أعلى 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: تأكد من إغلاق تعليقك --> . testString: 'assert(code.match(/-->.*\n+.+/g), "Be sure to close your comment with -->.");' - text: يجب أن يكون لديك نفس العدد من الفتاحات والإغلاق. 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 ```