--- id: 587d778f367417b2b2512aae title: Give Links Meaning by Using Descriptive Link Text challengeType: 0 videoUrl: 'https://scrimba.com/c/c437DcV' forumTopicId: 301013 dashedName: give-links-meaning-by-using-descriptive-link-text --- # --description-- Screen reader users have various options for what type of content their device reads. These options include skipping to (or over) landmark elements, jumping to the main content, or getting a page summary from the headings. Another option is to only hear the links available on a page. Screen readers do this by reading the link text, or what's between the anchor (`a`) tags. Having a list of "click here" or "read more" links isn't helpful. Instead, use brief but descriptive text within the `a` tags to provide more meaning for these users. # --instructions-- The link text that Camper Cat is using is not very descriptive without the surrounding context. Move the anchor (`a`) tags so they wrap around the text `information about batteries` instead of `Click here`. # --hints-- Your code should move the anchor `a` tags from around the words `Click here` to wrap around the words `information about batteries`. ```js assert( $('a') .text() .match(/^(information about batteries)$/g) ); ``` The `a` element should have an `href` attribute with a value of an empty string `""`. ```js assert($('a').attr('href') === ''); ``` The `a` element should have a closing tag. ```js assert( code.match(/<\/a>/g) && code.match(/<\/a>/g).length === code.match(//g).length ); ``` # --seed-- ## --seed-contents-- ```html

Deep Thoughts with Master Camper Cat

Defeating your Foe: the Red Dot is Ours!

Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightning speed. But chin up, fellow fighters, our time for victory may soon be near. Click here for information about batteries

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

Deep Thoughts with Master Camper Cat

Defeating your Foe: the Red Dot is Ours!

Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightning speed. But chin up, fellow fighters, our time for victory may soon be near. Click here for information about batteries

```