Cant get past this ... i think i wrote it right

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label for="indoor"><input type="radio"value="indoor" name="indoor-outdoor"> Indoor</label> 
  <label for="outdoor"><input type="radio" value="outdoor" name="indoor-outdoor"> Outdoor</label>
<br>
<label><input type="checkbox" name="personality" value="loving">loving</label>
<label><input type="checkbox" name="personality" value="lazy">lazy</label>
<label><input type="checkbox" name="personality" value="energetic">energetic</label>
<br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

I just took a quick look at the test script for that challenge and I see it contains something like this $('label:contains("Energetic"). Meanwhile in your code I see you have changed the text content to lowercase, hence the failed tests. Change them back to be capitalized and it should work.

hi thanks!! i dont quite get what you are saying… maybe you can help by posting the code? ty

Sure, I mean this

<label><input type="checkbox" name="personality" value="energetic">Energetic</label>

Make sure to do with the others as well.

1 Like