* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
4.0 KiB
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
5ef9b03c81a63668521804e2 | Part 53 | 0 | part-53 |
--description--
Forms commonly use checkboxes for questions that may have more than one answer. For example, here's a checkbox with the option of tacos
: <input type="checkbox"> tacos
.
Under the legend
element you just added, add an input
with its type
attribute set to checkbox
and give it the option of Loving
.
--hints--
The input
element for your checkbox should have an opening tag, but not a closing tag.
assert($('fieldset > input') && !code.match(/<\/input\>/g));
You should only have added one input element for your checkbox. Remove any extras.
assert($('fieldset > input').length === 1);
Your new input
element should be below the legend
element with the text What's your cat's personality?
. You have them in the wrong order.
const existingLegendElem = $('fieldset > legend')[1];
assert(
existingLegendElem &&
existingLegendElem.nextElementSibling.nodeName === 'INPUT'
);
Your new input
element does not have a type
attribute. Check that there is a space after the opening tag's name.
assert($('fieldset > input')[0].hasAttribute('type'));
Your new input
element should have a type
attribute with the value checkbox
. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks.
assert(
$('fieldset > input')[0]
.getAttribute('type')
.match(/^checkbox$/i)
);
Although you have set the new input
element's type
attribute to checkbox
, it is recommended to always surround the value of an attribute with quotation marks.
assert(!/\<\s*input\s+type\s*=\s*checkbox/i.test(code));
The text Loving
should be located directly to the right of your checkbox. Make sure there is a space between the element and the text. You have either omitted the text or have a typo.
const checkboxInputElem = $('input[type="checkbox"]')[0];
assert(
checkboxInputElem.nextSibling.nodeValue.replace(/\s+/g, ' ').match(/ Loving/i)
);
--seed--
--seed-contents--
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section>
<section>
<h2>Cat Lists</h2>
<h3>Things cats love:</h3>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<figure>
<img src="https://bit.ly/fcc-lasagna" alt="A slice of lasagna on a plate.">
<figcaption>Cats <em>love</em> lasagna.</figcaption>
</figure>
<h3>Top 3 things cats hate:</h3>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<figure>
<img src="https://bit.ly/fcc-cats" alt="Five cats looking around a field.">
<figcaption>Cats <strong>hate</strong> other cats.</figcaption>
</figure>
</section>
<section>
<h2>Cat Form</h2>
<form action="https://freecatphotoapp.com/submit-cat-photo">
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
</fieldset>
<fieldset>
--fcc-editable-region--
<legend>What's your cat's personality?</legend>
--fcc-editable-region--
</fieldset>
<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</section>
</main>
</body>
</html>