Learn Basic String and Array Methods by Building a Music Player - Step 17

Tell us what’s happening:

Hi, I’m not sure what the problem is. I entered it into ChatGPT and it went through, but I keep getting an error that says "Your button element should have an aria-label attribute with the value Delete ${song.title}

Your code so far

<button class="playlist-song-delete" aria-label="Delete ${song.title}" content="<svg width="20" height="20" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#4d4d62"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5.32587 5.18571C5.7107 4.90301 6.28333 4.94814 6.60485 5.28651L8 6.75478L9.39515 5.28651C9.71667 4.94814 10.2893 4.90301 10.6741 5.18571C11.059 5.4684 11.1103 5.97188 10.7888 6.31026L9.1832 7.99999L10.7888 9.68974C11.1103 10.0281 11.059 10.5316 10.6741 10.8143C10.2893 11.097 9.71667 11.0519 9.39515 10.7135L8 9.24521L6.60485 10.7135C6.28333 11.0519 5.7107 11.097 5.32587 10.8143C4.94102 10.5316 4.88969 10.0281 5.21121 9.68974L6.8168 7.99999L5.21122 6.31026C4.8897 5.97188 4.94102 5.4684 5.32587 5.18571Z" fill="white"/></svg>"></button>

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn Basic String and Array Methods by Building a Music Player - Step 17

Can you explain what you are doing here? A button’s content is usually between the opening and closing button tags.

I thought it meant to use the content attribute. I tried putting it between the two button tags, but still got an error. It’s saying that my aria-label attribute is wrong.

You are correct, the svg element needs to go between the opening and closing button tags. As far as your aria-label attribute, you will need to post your updated code in here so we can see exactly what you did. Please use the following method to do that.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key. You may also be able to use Ctrl+e to automatically give you the triple back ticks while you are typing in the this editor and the cursor is on a line by itself. Alternatively, with the cursor on a line by itself, you can use the </> button above the editor to add the triple back ticks.

The instruction of this step is quite confusing for newbies.

“For the content of the delete icon, paste in the following SVG:”

To fix the problem:
try to put the “content” inside the element. (meanwhile, delete your “content” attribute and its values )

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.